//http://gsgd.co.uk/sandbox/jquery/easing/ (EFECTOS)

$(document).ready(function(){
	 
	
	//When mouse rolls over
	$("li.boton").mouseover(function(){
		$(this).stop().animate({height:'215px'},{queue:false, duration:400, easing: 'easeInQuad'})
	});
	
	//When mouse is removed
	$("li.boton").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:200, easing: 'easeInQuad'})
	});
	
});
