<!--

// JavaScript Document

// Commenter la	ligne qui ne doit pas apparaitre dans le menu...
// -------------------------------------------------------------
var tabMenuGauche = new Array();
tabMenuGauche.push({label:'Téléphonie', 			url:'http://www.samsung.com/fr/promos/?rub=telephonie', idimg:'itelec'});
//tabMenuGauche.push({label:'TV-Home Cinema', 	url:'http://www.samsung-microsites.fr/promos/offres-promotionelles-tv-homecinema.html', 	idimg:'iitv'});
tabMenuGauche.push({label:'Audio-vidéo', 		url:'http://www.samsung.com/fr/promos/?rub=audiovideo',	idimg:'iaudvid'});
//tabMenuGauche.push({label:'photo â€“ camÃ©scope', 	url:'http://www.samsung-microsites.fr/promos/offres-promotionelles-photocamescope.html',	idimg:'iphocam'});
tabMenuGauche.push({label:'Informatique', 		url:'http://www.samsung.com/fr/promos/?rub=informatique', 	idimg:'iinf'});
//tabMenuGauche.push({label:'Appareil Photo', 	url:'http://www.samsung.com/fr/promos/?rub=photo', idimg:'iphoto'});
//tabMenuGauche.push({label:'Caméscope', 			url:'http://www.samsung.com/fr/promos/?rub=camescopes', idimg:'icamera'});
//tabMenuGauche.push({label:'Électroménager', 	url:'http://www.samsung-microsites.fr/promos/offres-promotionelles-electromenager.html',	idimg:'ielectro'});
// -------------------------------------------------------------



var trtd = "<tr><td>";
var _trtd = "</td></tr>";
var debtabmenu = "<table width='160' border='0' cellpadding='0' cellspacing='0' class='menug_sstitre'>" + trtd + "&nbsp;"+ _trtd;
var fintabmenu = "</table>";

function makeMenuGauche(sel) {

	var ret = debtabmenu;
	var tmplig = '';
	for (i=0; i<tabMenuGauche.length; i++) {
		if (sel == tabMenuGauche[i].idimg) {
			tmplig 	= trtd + "<img src='images/picto-menug-on.gif' width='8' height='12' border='0'/><span class='menug_sstitre_selected'>"+tabMenuGauche[i].label+"</span>"  + _trtd;
		} else {
			tmplig 	= trtd + "<a href=\""+tabMenuGauche[i].url+"\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('"+tabMenuGauche[i].idimg+"','','images/commun/picto-menug-on.gif',0)\" class=\"menug_sstitre\" title='"+tabMenuGauche[i].label+"' target='_top'>";
			tmplig += "<img src='images/commun/picto-menug-off.gif' name='"+tabMenuGauche[i].idimg+"' width='8' height='12' border='0' id='"+tabMenuGauche[i].idimg+"' />";
			tmplig += tabMenuGauche[i].label + "</a>" + _trtd;
		}
		ret += tmplig;
	}
	ret += fintabmenu;
	document.write(ret);
}

//-->