var $j = jQuery.noConflict();
$j(document).ready(function(){
	var newClass;

	$j("#buckets li").click(function(){
	  window.location=$j(this).find("a").attr("href"); return false;
	});
	$j("#buckets li").mouseover(function(){
		photo = "ul#bucketsPhoto li";
		newClass=$j(this).attr("class");
		$j(photo).css({display: "none"});
		$j("ul#bucketsPhoto li."+newClass).css({display: "block"});
		
		$j(this).addClass("over");
	});
	$j("#buckets li").mouseout(function(){
		$j(this).removeClass("over");
	});

});

// 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 