

$(".hover").mouseover(function(){

	 var src = $(this).attr("src").match(/[^\.]+/) + "over.png";

     $(this).attr("src",src);
    }).mouseout(function(){


	 var src = $(this).attr("src").replace("over", "");
	            $(this).attr("src", src);
    });

	$(document).ready(function(){
		$('#team').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});

//	$("#team").mouseover(function(){

		//	$('#team ul').fadeIn(100);
	  //  }).mouseout(function(){
	//		$('#team ul').fadeOut(100);

	 //   });




//	$("#team").hover(function(){$('#team_nav').show(100);});	
//	$("#team").mouseout(function(){ $('#team_nav').hide(100);});
	
//	$("#team_nav").hover(function(){$('#tnav_hover').attr('id','team'); }	);	
//	$("#team_nav").mouseout(function(){ $('#team_nav').hide(100);});


