// JavaScript Document
/*js pour portfolio wb/color*/
	$(document).ready(function(){
	$("img.thumbsbandw").hover(
	function() {
	tmpid=this.id; /* on recupere l'id de la vignette*/
	test=tmpid.substring(3,tmpid.length);    /*on recup la chaine de caractere totale mais sans les 3premieres lettres cad img ds ce cas */
	document.getElementById('client'+test).style.color="#b0bf00";
	document.getElementById('libelle'+test).style.color="#ffffff";
	document.getElementById('fh'+test).style.backgroundColor="#bdcd00";
										
	$(this).stop().animate({"opacity": "0"}, 200);
	},
	function() {
	tmpid=this.id;
	test=tmpid.substring(3,tmpid.length);
	document.getElementById('client'+test).style.color="#FFFFFF";
	document.getElementById('libelle'+test).style.color="#bbbdbe";
	$(this).stop().animate({"opacity": "1"}, 400);
	document.getElementById('fh'+test).style.backgroundColor="";
	});
	});	
