
$(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');});

$('#showPartenaires').bind('mouseenter', function() {
	var top = $('#partenaires').position().top +
			  $('#partenaires').outerHeight()/2 -
			  $('.partenaires').outerHeight()/2;
	
	$('.partenaires')
		.stop()
		.css('top', top)
		.css('opacity', 0)
		.show()
		.animate({opacity:1}, 600);
});
$('#showPartenaires').bind('mouseleave', function() {
	$('.partenaires')
		.stop()
		.animate({opacity:0}, 600, function() {
			$(this).hide();
		});
 
});

$('#introListeNaissance a img').each(function() {
	
	this.src1 = $(this).attr('src');
	this.src2 = this.src1.substr(0, this.src1.indexOf('.'))+
				'_hover'+
				this.src1.substr(this.src1.indexOf('.'));
	
	$(this).bind('mouseover', function() {
		$(this).attr('src', this.src2);
	});
	
	$(this).bind('mouseout', function() {
		$(this).attr('src', this.src1);
	});
});

});
