// Teamfield Movement

		$(document).ready(function(){
			
			$("#teamfield").css({bottom: '-200px'});
			
			$("#clubs").click(function(){
				$(this).addClass('clickedAnchor');
				$("#teamfield").animate({bottom: '0px'});					   
			});
			
			$("a#minimized").click(function(){
				$("#clubs").removeClass('clickedAnchor');
				$("#teamfield").animate({bottom: '-200px'});					   
			});
			
			$('.teamer').fadeTo(200, 0.5);
			
			$('.teamer').hover(function(){
			
				$(this).stop().animate({
				
					'opacity' : '1'
				
				}, 500);
			
			}, function(){
			
				$(this).stop().animate({
				
					'opacity' : '0.5'
				
				}, 500);
			
			});
			
		});
		
