(function($){
	$(document).ready(function(){

		$( function() {
			$.vegas( 'slideshow', {
				delay: 8000,
				backgrounds: [		              
				  { src: "http://www.sinequanone.fr/images/bckg_sine_prehome01.jpg", fade: 500 }
				]
			} )( 'overlay' );
		});
		
		$.vegas('stop');
		
		cptImageHome = 0;
		
		$(".img_presse.link_lightboxSelection").each(function(){
			$(this).attr("name", "item_"+cptImageHome);
			cptImageHome++;
		});
		
		cptImageHome = 0;
		
		$(".presse_lightbox_home").each(function(){
			$(this).attr("id", "big_item_"+cptImageHome);
			cptImageHome++;
		});
		
		
		$(".link_lightboxSelection").click(function(){
			
			$("#big_"+$(this).attr("name")).fadeIn();
			$("#big_"+$(this).attr("name")).addClass("show");
			if (jQuery.browser.msie) {
				//$.scrollTo( '#wrapper', 'slow' );
			}

			$("#big_"+$(this).attr("name")).find(".presse_lightbox_item").show();
			$("#big_"+$(this).attr("name")).find(".presse_lightbox_item").addClass("show");
			
			
			//$("#custom_overlay").css("background-color", "#fff");
			//$("#custom_overlay").css("height", $(document).height()+"px");
//			$("#custom_overlay").css("width", "100%");
//			$("#custom_overlay").css("opacity", "0.8");
//			$("#custom_overlay").show();
//			$('#contenant_lightbox').fadeIn('slow');
			return false;
		});

		lightboxProduit_close = true;

		$(".link_presse_lightbox_home_close").click(function(){
			if(lightboxProduit_close) {
				if (jQuery.browser.msie) {

				}
				$(".presse_lightbox_item.show").fadeOut(300);
				
				//$("#custom_overlay").fadeOut();
				//$("#contenant_lightbox").fadeOut();
				$(".presse_lightbox_home.show").fadeOut();
				return false;
			}
		});
		
		
		
		
		
	});
})(jQuery);

