$(document).ready(function(){
	var now = new Date;
	var theYear=now.getYear();
	if (theYear < 1900)
	theYear=theYear+1900;
	
	$('#cr_year').text(theYear);
	
	$('#nav a').hover(function(){
		$(this).addClass('over');				   
		$(this).siblings().addClass('over');					   
	},
	function(){
		$(this).removeClass('over');				   
		$(this).siblings().removeClass('over');					   
	});
});


