$(document).ready(function(){
	$("#events img").each(function(){
		$(this).hover(function(){
			$(this).css({marginTop: "-93px"});	
		}, function(){
			$(this).css({marginTop: "0px"});
		});
	});



});


