// December 22, 2010 - script to fix inability of IE6 to read element hover status in CSS

$(document).ready(function(){
var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	if(isIE6){	
		$(".menu>ul>li").mouseover(function(){
										
				$(this).find("ul").show();								
											
		});
		$(".menu>ul>li").mouseout(function(){
										
				$(this).find("ul").hide();								
											
		});
	}
 });
