/* make gallery images preview changeable by clicking on these images */
$(document).ready(function(){
	/*$.post("/check_session.php", {type:'ShowOrNot'}, function(data){
    	if(data==1){
    		$.get("/advert_pop.php", function(data){
				$.modal(data);
			});
    	}
    });
	
	
	$("#share").click(function(){
		of = $("#share").offset();
		bh = $("#share-detail").height();
		$("#share-detail").css({top: (of.top-bh-10) +"px",left:of.left+"px"})
	})
	
	
	$("#share-close").click(function(){
		$("#share-detail").css({top: "-10000px"})
	})
	
	
	$('A[@rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });*/
});


function close_popup(){
	$(".sIFR-replaced").show();
	$.modal.close();
}