var jsReady = false;


// Appel du menu à l'ouverture de la page
window.onload=pageInit;


// Appelé par le "onload" du <body> tag. Indique que JS est prêt
function pageInit()
{
	// Flash attend que jsReady soit "true" pour initier le dialogue SWF/JS
	jsReady = true;

	// Initialisation du menu
	montre("smenu_actif");
}




// Gestion des items du menu
function montre(id) {
	var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
	if (d) {d.style.display='block';}
}


// Gestion des rollovers
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}


// Gestion de songPlayer (échange Flash / Javascript) 

// Fonction appelée par Flash
// RQ : Flash attend que jsReady soit "true" pour initier le dialogue SWF/JS
function isReady()
{
	return jsReady;
}
function loadSongs(aSongPath, aIndex)
{
	var swfSongPlayer = document.getElementById("songplayer");
	swfSongPlayer.loadSongs(aSongPath, aIndex);
}


//
// Haut-parleur
//

function activeSong(aSongPath, aIndex)
{
	loadSongs(aSongPath, aIndex);

	for (var i = 1; i<=30; i++) {
		if (document.getElementById("song"+i) == undefined){
			break;
		}
		if (i == aIndex) {
			activeMenuSongs(aIndex);
			document.getElementById("song"+i).actif = 1;
		} else {
			document.getElementById("song"+i).actif = 0;
			desactiveMenuSongs(i);
		}
	}
}


//
// Playlist
//

function activeMenuSongs(aIndex)
{
	if (document.getElementById("song"+aIndex).actif != 1){
		MM_swapImage('haut_parleur'+aIndex,'','images/haut_parleur_small_on.gif', aIndex);
		document.getElementById("song"+aIndex).style.color = "#ED2455";
	}
}
function desactiveMenuSongs(aIndex)
{
	if (document.getElementById("song"+aIndex).actif != 1){
		MM_swapImage('haut_parleur'+aIndex,'','images/haut_parleur_small_off.gif', aIndex);
		document.getElementById("song"+aIndex).style.color = "#7D7D7D";
	}
}

//
// Lien Image + texte (ex  : "mon compte")
//

function mouseLinkAndIcon(aLinkId, imageId, imageUrl, color)
{
	MM_swapImage(imageId,'',imageUrl, 1);
	document.getElementById(aLinkId).style.color = color;
}

//
// Lien Offre du moment
//


function mouseOverOffreMoment(color)
{
	document.getElementById("offre_moment_titre").style.color = color;
	document.getElementById("offre_moment_texte").style.color = color;
}

//Met en surbrillant les lignes du tableau séléctionnées dans l'admin
function tdColor(src, clrOver, clrClick, action){
  	if(action=="click"){
		src.locked = !src.locked;
		src.bgColor = clrClick;
	}
  	if(!src.locked){
		src.bgColor = clrOver;
	} 
}


//mdofie la valeur de act avant d'envoyer le formulaire
function mode (f, val)
{
		f.act.value = val;	
		f.submit();
}

function ableDeliv(e){
	document.forms.form1.add_adress.disabled = !e.checked;
	document.forms.form1.add_zipcode.disabled = !e.checked;
	document.forms.form1.add_city.disabled = !e.checked;
	document.forms.form1.add_countryID.disabled = !e.checked;
	document.forms.form1.add_userID.disabled = !e.checked;
	document.forms.form1.add_firstname.disabled = !e.checked;
	document.forms.form1.add_lastname.disabled = !e.checked;
	document.forms.form1.add_id.disabled = !e.checked;
}