$(function(){
   //切换效果
   $(".test .testcont:not(:first)").hide();
   $(".test .testimg").each(function(index){
       $(this).mouseover(
	   	  function(){
			  $(".test .testcont:visible").hide();
			  $(".test .testcont:eq(" + index + ")").show();
	  })
   })
})


