$(document).ready(function() {

	$("#teamlist img").hover(
		function(){
			parentop=$("#teamlist").position();
			imgp=$(this).position();
			imgw=$(this).width();
			theleft=imgw/2 + imgp.left;
			$("#schoolinfo").html($(this).attr("alt") + "<br />" + $(this).attr("rel"));
			$("#teambox").css({ top: parentop.top + 88, left: theleft }).fadeIn();
		},
	
		function(){
			$("#teambox").hide();
		}
	).click(function(){
	if($(this).parent().attr("href")== "#"){return false;}
	
	
	});

	
});