
function onOpenShadowbox(){
	//$('#sb-body-inner img').click(function(){ Shadowbox.close(); });
	$("#iphone").overscroll();
}

function onCloseShadowbox() {
	$('#content_left').show();
}

Shadowbox.init({
	skipSetup: true,
	language:   "fr",
	players: ["html"],
	overlayOpacity:0.6,
	onFinish:onOpenShadowbox,
	onClose:onCloseShadowbox,
	troubleElements:""
});

var idSousRubrique = '';
function openProject(idProjet,titre) {
	if ((typeof(idSousRubrique)=='undefined')||(idSousRubrique==null))
		idSousRubrique = '';
	$.ajax({
		type: "GET",
		url: "/genere-html-projet.php",
		data: "idProjet="+idProjet+"&idSousRubrique="+idSousRubrique+"&tmp="+((new Date()).valueOf()),
		success: function(msg){
			$('#content_left').hide();
			Shadowbox.open({
		        //content:    '<div id="toto"><div id="welcome-msg">Welcome to my website!</div><img src="/images/test/image1.jpg" alt="" width="700" /><img src="/images/test/image1.jpg" alt="" width="700" /><img src="/images/test/image1.jpg" alt="" width="700" /><img src="/images/test/image1.jpg" alt="" width="700" /><img src="/images/test/image1.jpg" alt="" width="700" /></div>',
		        content:    "<div id='iphone'><div class='contain_projet'>"+msg+"</div></div>",
		        player:     "html",
		        //title:      titre,
		        title:      "",
		        height:     550,
		        width:      840
		    });			
		}
	});
    
}

