window.addEvent('domready', function(){
	
	
	
	
	var choixtitre = $$('.stockchoixtitre');
	var choixfleche = $$('.pourfleche');
	var choixresult = $$('.packchoixresult');
	var choixpanier = $$('.stockpanier');
	
	var monurl = document.location.href;
	
	if (monurl.contains("pack=50")== true) {
		choixresult[0].setStyle('display', 'none');
		choixpanier[0].setStyle('display', 'none');
		choixtitre[1].addClass('select1');
		choixfleche[1].addClass('selecf');
	}
	else
	{
		choixresult[1].setStyle('display', 'none');
		choixpanier[1].setStyle('display', 'none');
		choixtitre[0].addClass('select1');
		choixfleche[0].addClass('selecf');
	}
	
	choixtitre.each(function(el, i){
						
		var effet = new Element(el);
			
		choixtitre.each(function(elem, j){
			if ( j == i )
			elem.addEvent('mouseover', function(){
				effet.addClass('select1');
				choixresult[i].setStyle('display', 'block');
				choixpanier[i].setStyle('display', 'block');
				choixfleche[i].addClass('selecf');
			});

			if (j != i)
			elem.addEvent('mouseover', function(){
				effet.removeClass('select1');
				choixresult[i].setStyle('display', 'none');
				choixpanier[i].setStyle('display', 'none');
				choixfleche[i].removeClass('selecf');
			});
		});
	});	
});

/*le player flash*/
window.addEvent('load', function(){
	$$('.fixPNG').each(function(png) {fixPNG(png);});

	var so = new SWFObject("../flash/solutions/illustrstockage.swf", "illsutr1", "204", "209", "7", "#FFFFFF");
	so.useExpressInstall("../flash/expressinstall.swf");
	so.addParam("wmode", "transparent"); 
	so.write("illustrflash");
});