// JavaScript Document
function rollover(id) {
	img = document.getElementById(id);
	root = "http://www.emploi-mousquetaires.com/";
	pos_ = id.lastIndexOf("_");
	nom = id.substring(0, pos_);
	
	if(img.src == root+"img/"+nom+".gif") {
		img.src = root+"img/"+nom+"_hover.gif";
	} else if(img.src == root+"img/"+nom+"_hover.gif") {
		img.src = root+"img/"+nom+".gif";
	}
	//alert(img.src);
}
/*
function rollover(a) {
/*	pos_ = id.lastIndexOf("_");
	nom = id.substring(0, pos_);
	img = a.getElementsByTagName("img");
	h3 = a.getElementsByTagName("h3");
	root = "http://www.emploi-mousquetaires.com/";

	if(img.hasChildNodes() == true) {
		if(img[0].src == root+"img/"+name+".gif") {
			img[0].src = root+"img/"+name+"_hover.gif";
		} else if(img[0].src == root+"img/"+name+"_hover.gif") {
			img[0].src = root+"img/"+name+".gif";
		}
	}
	if(h3.hasChildNodes() == true) {
		if(h3[0].style.color == "#646464") {
			h3[0].style.color = "#e43420";
		} else if(h3[0].style.color == "#e43420") {
			h3[0].style.color = "#646464";
		}
	}
	//alert(img.src);
}
*/
