$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#soluciones-menu").mouseover(function(){
		$(this).stop().animate({height:'120px'},{queue:false, duration:200, easing: 'jswing'})
	});
	
	//When mouse is removed
	$("#soluciones-menu").mouseout(function(){
		$(this).stop().animate({height:'34px'},{queue:false, duration:200, easing: 'jswing'})
	});
	
	
	
	//2///////////////////////
		//When mouse rolls over
	$(".equipos").mouseover(function(){
		$(this).stop().animate({height:'95px'},{queue:false, duration:200, easing: 'jswing'})
	});
	
	//When mouse is removed
	$(".equipos").mouseout(function(){
		$(this).stop().animate({height:'34px'},{queue:false, duration:200, easing: 'jswing'})
	});
	
	
	
	
});
