$(document).ready(function() {

    // navigation menus
    $('#main_nav2 li.navItem').hover(

    // over nav
			function() {
			    if ($(this).find('ul').children().length > 0) {
			        $(this).find('ul').show();
			        
			        if (IsBrowserIE6()) {
			        	// i.e. 6 fixes
			        	$(this).css('margin-bottom', '-3px');
			        }
			    } else {
			    	// if i.e. 7 then fix the bottom margin...
			    	if (IsBrowserIE7() ) {
			    		$(this).css('margin-bottom', '3px');
			    	}
			    
			    }
			},
    // off nav
			function() {
			    $(this).find('ul').hide();
			    
				if (IsBrowserIE6()) {
					// i.e. 6 fixes
					$(this).css('margin-bottom', '0px');
				}
				
			//	$(this).css('margin-bottom', '3px');
			}
		)

});

function IsBrowserIE6() {
    return ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined));
}

function IsBrowserIE7() {
	return (navigator.appVersion.indexOf('MSIE 7.')==-1) ? false : true;
}
