$(document).ready(function(){
			
	//When mouse rolls over
	$(".m_desplegable").mouseover(function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".m_desplegable").mouseout(function(){
		$(this).stop().animate({height:'31px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});	
});
