﻿var intSlideDuration = 8500;

window.onload = function()
{
	startSlideShow();
	// showPromo();
};

function startSlideShow()
{
	$('#divSlideShow').fadeIn(650);

	$('#divSlideShowLeft').cycle({ 
		fx:    'fade', 
		speed:  1250,
		timeout:  intSlideDuration
	});
	
	$('#divSlideShowRight').cycle({ 
		fx:    'fade', 
		speed:  1250,
		timeout:  intSlideDuration, 
		delay: 0 - (intSlideDuration / 2)
	});
}

function showPromo()
{
	Shadowbox.init(
	{
		players: ["img,html,iframe"]
		// skipSetup: true
	});
	
	
	var strPromoSeen = readCookie("PromoDisplayed");
	
	if (strPromoSeen != "1")
	{
		var url = "images/promos/popup_vetements_a_gagner.jpg";
		
		Shadowbox.open({
			content: url,
			player: "img"
			//width:	576,
			//height:	783
		
		});
		
		writeCookie("PromoDisplayed", 1);
	}
}
