// JavaScript Document
$(document).ready(function(){

    //When Mouse rolls over li
    $("ul#nav li").mouseover(function(){
		//$(this).find('ul').css({'display' : 'block' , 'height' : '0'})
        //$(this).stop().find('ul').animate({height:'80'},{queue:false, duration:600, easing: 'easeOutBounce'});
        //$(this).stop().find('ul').animate({height:'100'},{queue:false, duration:600, easing: 'easeOutBounce'});
		//$(this).find('ul').css({'display' : 'block'})
		$(this).find('ul').show();
    });

    //When Mouse cursor removed from li
    $("ul#nav li").mouseout(function(){
        //$(this).stop().find('ul').animate({height:'0'},{queue:false, duration:600, easing: 'easeOutBounce'})
        //$(this).stop().find('ul').animate({height:'0'},{queue:false, duration:600, easing: 'easeOutBounce'})
		//$(this).find('ul').css({'display' : 'none'})
		$(this).find('ul').hide();

    });

});
