// JavaScript Document

$(document).ready(function(){


$("#programs").hover(function(){
			$(".programs_sub").animate({opacity: "show", top: "141"}, 500);
							  }, function() {
	  $(this).next("em").animate({opacity: "hide", top: "-85"}, 500);
	});


$("#services").hover(function(){
			$(".services_sub").animate({opacity: "show", top: "141"}, 500);
							  }, function() {
	  $(this).next("em").animate({opacity: "hide", top: "-85"}, 500);
	});
							 





//if any elements besides programs or the programs submenu are hovered, make the sub menu dissapear
$("#header, #mainpic_container, .image_holder, #services, #gov_regs, #contact, #home").mouseover(function(){
	
$(".programs_sub").animate({opacity: "hide", top: "135"}, "slow");
});	



//if any elements besides services or the services submenu are hovered, make the sub menu dissapear
$("#header, #mainpic_container, .image_holder, #programs, #gov_regs, #contact, #home").mouseover(function(){
	
$(".services_sub").animate({opacity: "hide", top: "135"}, "slow");
});	
		
		
		
		
		
				});	


