// JavaScript Document
jQuery(document).ready(function() {
	// do something here
 $(document).ready(function() {
   $("a.eventItem").hover(function() {
     $(this).addClass("highlightItem").next("div .eventInfo").show("slow");
   },function(){
     $(this).removeClass("highlightItem").next("div .eventInfo").hide("fast");
   });
 });

 $(document).ready(function() {
    $("div .eventInfo").hide();
 });
 
});