// JavaScript Document

$(document).ready( function() {

	//set up header navs 
	$('ul#impDropdown > li').hover(
			function() {
				// add a hover class
				$(this).addClass('topLevelHover');

				// if this item has no submenu, make sur eit doesn't expand in size.
				if ( $(this).children().size() == 1 ) {
					$(this).addClass('topLevelHoverNoKids');
				}

				//reveal the menu
				$(this).children('.menuBox').show(0);
			},
			function() {
				$(this).removeClass('topLevelHover');
				$(this).children('.menuBox').hide(0);	
			}
	);
	
});