$(document).ready(function(){

	//Remueve el link
	$("a").click(function(){
		$(this).blur();
	});
	
	//Cuando el Mouse pasa por encima
	$(".nuestraHistoria").mouseover(function(){
		$(this).stop().animate({height:'75px'},{queue:true, duration:1000})
	});
			
	$(".nuestroStaff").mouseover(function(){
		$(this).stop().animate({height:'65px'},{queue:true, duration:1000})
	});
	
	$(".especialidades").mouseover(function(){
		$(this).stop().animate({height:'110px'},{queue:true, duration:1000})
	});
	
	$(".tecnologia").mouseover(function(){
		$(this).stop().animate({height:'30px'},{queue:true, duration:1000})
	});
	
	$(".convenios").mouseover(function(){
		$(this).stop().animate({height:'30px'},{queue:true, duration:1000})
	});
	
	//Cuando el Mouse es removido
	$("#menuClinica li").mouseout(function(){
		$(this).stop().animate({height:'30px'},{queue:false, duration:1000})
	});
	
});
