function TeamList()
{
	this.init	= function()
	{
		$(window).load
		(
			function()
			{	
				
			
				$('li a', '#team-mouse-over').each
				(
					function(key, value)
					{
						$( value ).mousemove
						(
							function(e)
							{
								var x = 20 + e.pageX - $(this).offset().left;
								var y = 20 + e.pageY - $(this).offset().top;
								//
								
								if( e.pageX > .5* $(window).width() )
								{
									x -= 480;	
								}
								
								$("span p", this).css("left", x + "px").css("top", y + "px");
							}
						).mouseover
						(
							function()
							{
								$("span", this).fadeIn(100);
							}
						).mouseleave
						(
							function()
							{
								$("span", this).fadeOut(25);
							}
						);
					}
				);
			}
		);
	}
}


new TeamList().init();

