// JavaScript Document
$(document).ready(function(){
	$("#theTop ul.mainNav li").hover(function(){
		var theUL = $('ul:first',this)
	if($.browser.msie && $.browser.version=="6.0") {
		//do nothing
	} else {
	  if ($(theUL).length > 0){
			// do something here
			var theFirstClass = $('a:first',this).attr('class')
	
			var theFirstHTML = $('a:first',this).html()
			if (theFirstHTML.indexOf("<strong>") < 0 ) {
				$('a:first',this).removeClass();
				$('a:first',this).addClass(theFirstClass + "Hover");
			}
					
			$(theUL).width($('a:first',this).width());
			$(theUL).fadeIn("fast");
		}
	}

	}, function(){
		if($.browser.msie && $.browser.version=="6.0") {
			//do nothing
		} else {
			var theSecondClass = $('a:first',this).attr('class')
			var theFirstHTML = $('a:first',this).html()
			if (theFirstHTML.indexOf("<strong>") < 0 ) {
				$('a:first',this).removeClass();
				$('a:first',this).addClass(theSecondClass.replace("Hover",""));
			}
			$('ul:first',this).fadeOut("fast");
		}
	});
	
});
