$(document).ready(function(){

    //When mouse rolls over
    $("li.li_submenu").mouseover(function(){
        $(this).stop().animate({height:'320px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $("li.li_submenu").mouseout(function(){
        $(this).stop().animate({height:'37px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	//When mouse rolls over
    //$(".panel").mouseover(function(){
        //$("content").stop().animate({width:'60%'},{queue:false, duration:90})
    //});

    //When mouse is removed
    //$(".panel").mouseout(function(){
        //$("content").stop().animate({width:'40px'},{queue:false, duration:90})
    //});
});  


