//drop down menu

jQuery(document).ready(function(){
    jQuery("#gammaNav").hide();

    jQuery("ul#nav > li.about, #betaNav").hover(function(){    	

	jQuery('#betaNav').stop().animate({height: "30px"}, 400);
	jQuery("#betaNav ul").stop().show();

    	jQuery("li.about").addClass("current_page_item");}, function(){    

	jQuery('#betaNav').stop().animate({height: "0px"}, 400);
	jQuery("#betaNav ul").stop().hide();

	jQuery("li.about").removeClass("current_page_item");		
    }); 

    jQuery("ul#nav > li.services, #gammaNav").hover(function(){    	
	jQuery('#gammaNav').stop().animate({height: "103px"}, 400);

	jQuery("#gammaNav ul").stop().show();

	jQuery("li.services").addClass("current_page_item");}, function(){    

	jQuery('#gammaNav').stop().animate({height: "0px"}, 400);
	jQuery("#gammaNav ul").stop().hide();

	jQuery("li.services").removeClass("current_page_item");
    });
 
}); 	
