

jQuery(document).ready(function() {
	jQuery(".new_event").hover(function(){	
		jQuery(this).css("cursor","pointer");
		//jQuery(this).css("border-color","#EA6C28");
		jQuery(this).fadeTo("slow", 1.0);
	},function(){
		jQuery(this).fadeTo("slow", 0.7);
		jQuery(this).css("border-color","#CACDCF");
	});
		
});

