jQuery(document).ready(function() {
	
	// When the page is ready load these callback functions
	$(document).ready(function(){

		$(".calendar div.eventGroup a").hover(

			function(event){
      	 		$(this).next(".eventInfo").show();
     		},
     		
     		function(event){
      	 		$(this).next(".eventInfo").hide();
     		})
		});
	});



