// JavaScript Document
	var hideDelay = 300;
	var hideDelayTimer = null;
	var totalimg = 4; 
	var totalimg = 4; 
	
	$(document).ready(function()
	{
		/********* Tab Mouseover  **************/
		$("td#secondarynav > ul > li").each(function(){
			$(this).mouseover(function(){
				if (hideDelayTimer) clearTimeout(hideDelayTimer);
				$("> ul", this).prev("a").addClass("active");					   
				$("ul", this).not($("ul ul", this)).show('fast');					
			})	

		})
		$("td#secondarynav > ul > li > ul > li").mouseover(function(){
			if (hideDelayTimer) clearTimeout(hideDelayTimer);
			$("> ul", this).prev("a").addClass("active");	
			$("ul", this).show('fast');	
		});			
		$("#secondarynav").mouseout(function(){
			if (hideDelayTimer) clearTimeout(hideDelayTimer);
			hideDelayTimer = setTimeout(function () {
				hideDelayTimer = null;
				$("td#secondarynav ul ul").not($("td#secondarynav ul li.active ul")).hide('slow', function(){ 
					$("td#secondarynav ul a").removeClass("active");
					$("td#secondarynav ul li.active ul ul").not($("td#secondarynav ul li.active ul li.active ul")).hide('slow');
				});
				
			}, hideDelay);	
			
		})
	
	});
