$(document).ready(function(){
	
	$(".event h3").hover(
		function () {
			$(this).find("span.weekday").show();
		}, 
		function () {
			$(this).find("span.weekday:last").hide();
  		}
	);
	
	
});
