
$(document).ready(function(){$('.cat').hover(function(){$(this).css('background-color','#f2f2f2');},function(){$(this).css('background-color','transparent');});$('.cat h2 a').hover(function(){$(this).parent().parent().children('p.infosProduit').css('background-image','url(img/plus-info-over.png)');$(this).parent().parent().children('p.infosProduit').css('color','#d15c17');$(this).parent().parent().children('p.infosGamme').css('background-image','url(img/bt-gamme-over.png)');$(this).parent().parent().children('p.infosGamme').css('color','#d15c17');},function(){$(this).parent().parent().children('p.infosProduit').css('background-image','url(img/plus-info.png)');$(this).parent().parent().children('p.infosProduit').css('color','#333');$(this).parent().parent().children('p.infosGamme').css('background-image','url(img/bt-gamme.png)');$(this).parent().parent().children('p.infosGamme').css('color','#333');});});
