
// JQUERY FAQ
//--------------------------------------------------------------------------------------------
$(document).ready(function(){//on attend que la page soit charg¨Ĥe
        //on donne l'id de la liste vis¨Ĥe, et on lui donne ses param¨¨tres
		$('#cssFAQList').wslide({
			width: 300,
			height: 450,
			autolink: false,
			fade: true,
			duration: 2000
		});        
		//si vous avez d'autre listes, placez leur code d'initialisation ici ¨¤ la suite ....
        //$("#autre_liste").wslide({ ...
});


// POP UP NEW WINDOW
//--------------------------------------------------------------------------------------------
function loadpopup(ref) {
	window.open(ref, "popup", "height=480,width=720,left=100,top=100,channelmode=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,scrollbars=yes,title=Project_Profile");
}


/* PEELPAGE
-------------------------------------------------------------------------------------- */
$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '100px', 
				height: '102px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '100px', 
				height: '100px'
			}, 200);
	});

	
});
