$(function(){
   $(".test .testcont:not(:first)").hide();
   $(".test .testimg").each(function(index){
       $(this).mouseover(
	   	  function(){
			  $(".test .testcont:visible").hide();
			  $(".test .testcont:eq(" + index + ")").show();
	  })
   })
})

$(document).ready(function(){

	//toggle softList
	$(".ts_arrow").click(function(){				  
		$(".softList").slideToggle(200);
		return false;
	});

});

