$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	//Menu (Parte 02)
	//Remove outline from links
	$('#home').click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$('#home').mouseover(function(){
		$(this).stop().animate({height:'51px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$('#home').mouseout(function(){
		$(this).stop().animate({height:'45px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	});
	
	//Menu (Parte 02)
	//Remove outline from links
	$('#editorial, #abasch, #novedades, #catalogo, #autores, #leer, #prensa, #extras, #links, #contacto').click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$('#editorial, #abasch, #novedades, #catalogo, #autores, #leer, #prensa, #extras, #links, #contacto').mouseover(function(){
		$(this).stop().animate({height:'122px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$('#editorial, #abasch, #novedades, #catalogo, #autores, #leer, #prensa, #extras, #links, #contacto').mouseout(function(){
		$(this).stop().animate({height:'45px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
