$(document).ready(function(){		
	$('#topNavContainer #topNav ul li.aboutSub').hover(function(){
		$('#about_subNav').fadeIn("fast");
		
		window.setTimeout(function() {
		 $('#about_subNav').fadeOut("slow");
		}, 2000);
		
	});	
	$('#topNavContainer #topNav ul li.prodSub').hover(function(){
		$('#prod_subNav').fadeIn("fast");
		
		window.setTimeout(function() {
		 $('#prod_subNav').fadeOut("slow");
		}, 2000);
		
	});	
	var str=location.href.toLowerCase();
	$('#topNavContainer #topNav ul li a').each(function() {
			if (str.indexOf(this.href.toLowerCase()) > -1) {
					$(this).attr("class","isActive"); //hightlight parent tab
			}  
	});
});  
