function initGlobal()
{
	fancybox();
	parallax();
	panorama();
	displayer();

}

//----------------------------
//fancybox
//----------------------------
function fancybox(){

$(".various3").fancybox({
	'width': 700,
	'height': '100%',
	'autoScale'	: false,
	'transitionIn':'none',
	'transitionOut': 'none',
	'type': 'iframe'
	});
	
	$("a.myfancybox").fancybox({ 

	});

}


//----------------------------
//parallax
//----------------------------
function parallax(){
	jQuery('#parallax .parallax-layer')
	.parallax({
	mouseport: jQuery('#parallax')
	});
}

//----------------------------
//panorama
//----------------------------
function panorama(){
$(window).load(function(){
		$("div#makeMeScrollable").smoothDivScroll({ 
		//autoScroll: "onstart", 
		autoScrollDirection: "backandforth", 
		autoScrollStep: 1, 
		autoScrollInterval: 50
		//startAtElementId: "startAtMe", 
		//visibleHotSpots: "always"
		});
	});

}


//----------------------------
//displayer
//----------------------------
function displayer(){

    $("a.ecouter-img").click(function () {
    $(".player-test").show("slow");
    });
	    $("a.ecouter-img-en").click(function () {
    $(".player-test").show("slow");
    });


}
