		
 $(function(){
	$(".tab").each(function(i){
	$(this).mouseover(function(){
	$(".tab").removeClass("current");
	$(this).addClass("current");
	$(".panels").removeClass("block")
	$(".panels").eq(i).addClass("block");
	})
	})
	}) 
					

