/* Navigation Sub-nav Drop-down */
jQuery(document).ready(function(){	

	jQuery('li#programs_link').hover(
	function() { $('ul', this).css('display', 'block'); },
	function() { $('ul', this).css('display', 'none'); });
		
});

