$(function(){
   $("#newtoptwo ul:not(:first)").hide();
   $("#tab3 li").each(function(index){
       $(this).mouseover(
	   	  function(){
			  $("#tab3 li.threehover").removeClass("threehover");
			  $(this).addClass("threehover");
			  $("#newtoptwo > ul:visible").hide();
			  $("#newtoptwo ul:eq(" + index + ")").show();
	  })
   })
  
   $(".test .testcont:not(:first)").hide();
   $(".test .testimg").each(function(index){
       $(this).mouseover(
	   	  function(){
			  $(".test .testcont:visible").hide();
			  $(".test .testcont:eq(" + index + ")").show();
	  })
   })
})



