var $ = jQuery.noConflict();

$(document).ready(function(){

	$("#pass").mouseover(function(){
		  <!--$('.pass').animate({'rotate': 40});-->
		  $('.pass').animate({
			  marginTop: "-20px",
			  marginLeft: "-20px",
		  }, 100 );
	});
	
	$("#pass").mouseout(function(){
		  <!--$('.pass').animate({'rotate': 40});-->
		  $('.pass').animate({
			  marginTop: "0px",
			  marginLeft: "0px",
		  }, 100 );
	});
	
	$("#map").mouseover(function(){
		  <!--$('.map').animate({'rotate': 40});-->
		  $('.map').animate({
			  marginTop: "-20px",
			  marginLeft: "-20px",
		  }, 100 );
	});
	
	$("#map").mouseout(function(){
		  <!--$('.map').animate({'rotate': 40});-->
		  $('.map').animate({
			  marginTop: "0px",
			  marginLeft: "0px",
		  }, 100 );
	});
	
	$("#contest").mouseover(function(){
		  <!--$('.contest').animate({'rotate': 40});-->
		  $('.contest').animate({
			  marginTop: "-20px",
			  marginLeft: "-20px",
		  }, 100 );
	});
	
	$("#contest").mouseout(function(){
		  <!--$('.contest').animate({'rotate': 40});-->
		  $('.contest').animate({
			  marginTop: "0px",
			  marginLeft: "0px",
		  }, 100 );
	});

});
