function topMenu()
{

    //When mouse rolls over
    $(".topMenuLi").mouseover(function(){
		alert("cara de webo");
        $(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $(".topMenuLi").mouseout(function(){
        $(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

}
