$(function(){
	var date = $('.date');
	date.hover(function(){
		$(this).addClass('date_mouseover');
	},function(){
		$(this).removeClass('date_mouseover');
	});
	date.click(function(){
		self.location.href='index.php?site=date&id='+$(this).attr("id").split("_")[1];
	})
});
