$(document).ready(function(){

    //Menu dropdown when mouse rolls over  
	//35px per item in li
//    $(".home").mouseover(function(){
//        $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutCubic'})
//    });
	
	$(".about").mouseover(function(){
        $(this).stop().animate({height:'170px'},{queue:false, duration:600, easing: 'easeOutCubic'})
    });

    $(".services").mouseover(function(){
        $(this).stop().animate({height:'170px'},{queue:false, duration:600, easing: 'easeOutCubic'})
    });

//    $(".contact").mouseover(function(){
//        $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutCubic'})
//    });


    //When mouse is removed
    $("#menu li").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutCubic'})
    });

});
