//Démarrage

(function($) {
 
})(jQuery)


$(document).ready(function() {
						   
 $(this).bind("contextmenu", function(e) {e.preventDefault();});

$.preloadCssImages();



    RollOver.Initialize();
	Galery1.Initialize();



});

var RollOver = {
	Initialize: function() {
		
		$(".rollover").mouseenter(function () {
			this.src = this.src.replace("_off","_on");
		})
		$(".rollover").mouseleave(function () {
			this.src = this.src.replace("_on","_off");
		})
	}

};


var Galery1 = {
	
	Initialize: function() {
		 
		 $("#Carouselcontainer").css("display","block");
		 
		 $('#mycarousel').jcarousel({
			visible: 3,
			wrap: "circular",
			animation: "slow",
			scroll:1,
			easing:"linear"

		});
		 
	}
}
