
$(document).ready(function() {

	// rollover boutons header
	$(".rollover").hover(
		function(){
			if($(this).attr("src").indexOf("_activ") == -1) {
				var newSrc = $(this).attr("src").replace(".jpg","_activ.jpg");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("_activ") != -1) {
				var oldSrc = $(this).attr("src").replace("_activ","");
				$(this).attr("src",oldSrc);
			}
		}
	);

});
