// JavaScript Document

var currentDate = new Date();

$(function(){//place all code to run on-DOM load in this function
	
	if($.browser.msie){$("hr").attr({ size: "1", noshade: "noshade" });};
	
	$("#currentDate").empty();
	$(currentDate.getFullYear()).appendTo("#currentDate");//add current date to the footer

});//END on-DOM load function