$(document).ready(function() {
	$(".intervenant_article .cat_image_intervenant img").mouseenter(function(){
		$(this).hide();
		$(this).siblings('.hover_image_intervenant').css('width',$(this).width()-10);
		$(this).siblings('.hover_image_intervenant').css('height',$(this).height()-20);
		$(this).siblings('.hover_image_intervenant').show();
	});
	$(".intervenant_article .cat_image_intervenant .hover_image_intervenant").mouseleave(function(){
		$('.hover_image_intervenant').hide();
		$('.intervenant_article .cat_image_intervenant img').show();			
	});
	$(".intervenant_article .cat_image_intervenant .hover_image_intervenant").mouseout(function(){
		$('.hover_image_intervenant').hide();
		$('.intervenant_article .cat_image_intervenant img').show();			
	});
	
	$(".conseil_orientation_article .cat_image_intervenant img").mouseenter(function(){
		$(this).hide();
		$(this).siblings('.hover_image_intervenant').css('width',$(this).width()-10);
		$(this).siblings('.hover_image_intervenant').css('height',$(this).height()-20);
		$(this).siblings('.hover_image_intervenant').show();
	});
	$(".conseil_orientation_article .cat_image_intervenant .hover_image_intervenant").mouseleave(function(){
		$('.hover_image_intervenant').hide();
		$('.conseil_orientation_article .cat_image_intervenant img').show();			
	});
	$(".conseil_orientation_article .cat_image_intervenant .hover_image_intervenant").mouseout(function(){
		$('.hover_image_intervenant').hide();
		$('.conseil_orientation_article .cat_image_intervenant img').show();			
	});
	$(".goto option").click(function(){
		if($(this).val()!="")
			window.location =$(this).val();
	});
	
});


