// JAVASCRIPT

$(document).ready(function(){
	
	// IE6 Rollovers
	$('#menu LI').hover(
		function(){$(this).addClass(" over");},
		function(){$(this).removeClass(" over");}
	);
	
	// Add Menu Images for IE6
	$('#menu LI UL LI:last-child').addClass('lastChild');
	
	//Just On the Homepage
	if($("#section_home").length > 0 ){	
		
		//Hide Content
		$('#products_content').html('');
		$('#promotions_content').html('');
		$('#whatsnew_content').html('');
	
		//Show products tab
		$("#products_content").load("products_tab.htm");
		//Show content tab
		$("#promotions_content").load("promotions_tab.htm");
		//Show whatsnew tab
		$("#whatsnew_content").load("whatsnew_tab.htm");
	}
	
});

// Date
function date(get) {
	var mydate=new Date()
	var year=mydate.getFullYear()
	var day=mydate.getDay()
	var month=mydate.getMonth()
	var daym=mydate.getDate()
	var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
	if(get=="month"){document.write(montharray[month]);}
	if(get=="date"){document.write(daym);}
	if(get=="year"){document.write(year);}
}