// Get Date for Copyright
var now = new Date();
var year= now.getYear();
var mon = now.getMonth() + 1;
var day = now.getDate();



// Hack for Gecko and Web-Kit Y2K  Bug
if (year >= 100 && year <= 1999)
	{ 
		year = year + 1900
	}
	else {
		year = year
	}

//Rollover for Social Images
$(document).ready(function(){
	$("#facebook").hover(function(){
		$(this).attr({src: "images/facebook_bw.png"});},function(){$(this).attr({src: "images/facebook.png"});
	});
	$("#linkedin").hover(function(){
		$(this).attr({src: "images/linkedin_bw.png"});},function(){$(this).attr({src: "images/linkedin.png"});
	});
	$("#myspace").hover(function(){
		$(this).attr({src: "images/myspace_bw.png"});},function(){$(this).attr({src: "images/myspace.png"});
	});
	$("#twitter").hover(function(){
		$(this).attr({src: "images/twitter_bw.png"});},function(){$(this).attr({src: "images/twitter.png"});
	});
	$("#youtube").hover(function(){
		$(this).attr({src: "images/youtube_bw.png"});},function(){$(this).attr({src: "images/youtube.png"});
	});
});

$(document).ready(function(){
  $.preloadCssImages();
}); 