	$(document).ready(function(){
		$(".tabs .tabsmenu li").each(function(){
			$($(".a",this).attr("href")+ "_t").hide();
			
			$(this).click(function(){
				$(".tabs li").each(function(){
					$($("a",this).attr("href")+ "_t").hide();
				})
				$($(".tabs a").attr("href")+ "_t").hide() ;
				$(".tabs li").removeClass("selected");
				$($("a",this).attr("href")+ "_t").fadeIn("slow") ;
				$(this).addClass("selected") ;
			})
		})
		$(".tabs li").eq(0).click();
	})