// JavaScript Document

/*==================================================================
* Sous menu rollover
==================================================================*/

// Get the browser valid path
function getBrowserStyle(idObj) {

	if (document.all){
		browserStyle = document.all[idObj].style;}				// Netscape
	else if(document.layers){
		browserStyle = document.layers[idObj];}					// Internet Explorer
	else if(document.getElementById){
		browserStyle = document.getElementById(idObj).style;}	// Netcsape 6

	return browserStyle;
}

function changeColor(id, color){
	getBrowserStyle(id).backgroundColor = color;
}

