//coche/décoche toutes les cases à cocher d'une liste
function checkAllListLine()
{
	allBox = document.getElementsByName('select[]');
	all = document.getElementsByName('selectall');
	
	for(var i=0;i<allBox.length;i++)
	{
		allBox[i].checked=all[0].checked;
	}	
	return false;
}

//initialise AJAX
function initializeAjax()
{
	var xhr = null; 	 
	if (window.XMLHttpRequest) 		// Firefox 
		xhr = new XMLHttpRequest(); 
	else if (window.ActiveXObject) 	// Internet Explorer 
		xhr = new ActiveXObject("Microsoft.XMLHTTP"); 
		
	return xhr;
}
//change la couleur de fond du menu principal et du panier
function changeMenuColor(color) 
{
	val = "background:#"+color;
	
	document.getElementById('panier').setAttribute('style', val);
	document.getElementById('menu').setAttribute('style', val);
	document.getElementById('mainmenu').setAttribute('style', val);
}
