var currentSubMenu = "";
$(document).ready(function(){
	
	$("#" + currentPage).css('color', '#ffffff');
	
	$("#" + currentSubMenu).addClass('sel');
	
	$(".team_container").hover(function(){
		$(this).stop().animate({ 
      	}, 500 );
	},function(){
		$(this).stop().animate({ 
        	backgroundColor: "#ffffff"
      	}, 500 );
	});
	
	$("#sub_menu_global a").hover(function(){
		if (this.id != currentSubMenu){	
			$(this).stop().animate({ 
        		paddingLeft: "25px"
      		}, 250 );
      	}
	},function(){
		if (this.id != currentSubMenu){		
			$(this).stop().animate({ 
	        	backgroundColor: "#ffffff",
	        	paddingLeft: "15px"
	      	}, 250 );
	    }
	});
	
	$("#menu a").hover(function(){
		if (this.id != currentPage){	
			$(this).stop().animate({ 
        		color: "#ffffff"
      		}, 250 );
      	}
	},function(){
		if (this.id != currentPage){		
			$(this).stop().animate({ 
	        	color: "#A9A9A9"
	      	}, 250 );
	    }
	});
  
});




