var $j = jQuery.noConflict();

// SUCKERFISH DROPDOWNS FOR IE6
/*
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className="sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className="";
		}
	}
}
*/

$j(document).ready(function(){
	$j('#promo-wrapper').innerfade({
		animationtype:'fade',
		timeout: 8000,
		type: 'random',
		containerheight: '248px'
	});
});

// Get Date For Form Processor
var getDate=new Date()

var getYear=getDate.getYear()
if (getYear < 1000)
getYear+=1900

var getDay=getDate.getDay()

var getMonth=getDate.getMonth()+1
if (getMonth<10)
getMonth="0"+getMonth

var getCurrentDay=getDate.getDate()
if (getCurrentDay<10)
getCurrentDay="0"+getCurrentDay

theDate = getMonth+"/"+getCurrentDay+"/"+getYear 
