

jQuery(function($){      
	
	
	
	 $("#eClubBtn").mouseenter(function(){
		  
		  $(this).animate({ 
			top: "0px"
	      }, 300 );

		  
  	  }).mouseleave(function(){
      	  $(this).animate({ 
			top: "-40px"
	      }, 300 );
    });


	$("#btnMap").mouseenter(function(){
      
	  	$(this).find(".bgImg").animate({ 
			top:"-20px"
			
      	}, 300, 'easeOutBounce' );


		  
    }).mouseleave(function(){
		
		$(this).find(".bgImg").animate({ 
			top:"0px"
			
      	}, 300, 'easeOutBounce' );
		
    });
	
	$("#btnParty").mouseenter(function(){
      
	  	$(this).find(".bgImg").animate({ 
			top:"-20px"
			
      	}, 300, 'easeOutBounce' );


		  
    }).mouseleave(function(){
		
		$(this).find(".bgImg").animate({ 
			top:"0px"
			
      	}, 300, 'easeOutBounce' );
		
    });


	$("#btnDirections").mouseenter(function(){
      
	  	$(this).find(".bgImg").animate({ 
			top:"-20px"
			
      	}, 300, 'easeOutBounce' );


		  
    }).mouseleave(function(){
		
		$(this).find(".bgImg").animate({ 
			top:"0px"
			
      	}, 300, 'easeOutBounce' );
		
    });
	
	$(".photoUpload").mouseenter(function(){
      
	  	$(this).animate({ 
			right:"0px"
			
      	}, 300, 'easeOutBounce' );


		  
    }).mouseleave(function(){
		
		$(this).animate({ 
			right:"-30px"
			
      	}, 300, 'easeOutBounce' );
		
    });
	
	$("#homeLeftTabs li").each(function() {
	
		
		$(this).mouseenter(function(){
      
	  		
			$(this).animate({ 
				marginLeft:"-10px"
				
			}, 300, 'easeOutBounce' );

			
		  
  		}).mouseleave(function(){
		
			$(this).animate({ 
				marginLeft:"0px"
				
			}, 300, 'easeOutBounce' );
			
		
    	});
	});
	
	


}); 