 $(document).ready(function(){
 	
 	
 	$(".events_content_box").hover(
 	function(){
      $(this).animate({ opacity: 0.4 }, 200 );
    },
    
    function(){
      $(this).animate({ 
        opacity: 1
      }, 200 );
    });
    
    
});