/* Tab
---------------------------------------------------------------------------------------------------- */
$(function(){
	$("#tab_audition .news_table").not($("#tab_audition .h2tab .current a").attr("href")).hide();
	$("#tab_audition .h2tab a").click(function() {
		$("#tab_audition .h2tab .current img").attr("src", function(){ this.src = this.src.replace("_current.gif","_off.gif"); });
		$("img", this).attr("src", function(){ this.src = this.src.replace(/_(off|on).gif/,"_current.gif"); });
		$(this).parent().addClass("current").siblings().removeClass("current");
		$($(this).attr("href")).show().siblings("table").hide();
		return false;
	});
});

$(function(){
	$("#tab_news .news_table").not($("#tab_news .h2tab .current a").attr("href")).hide();
	$("#tab_news .h2tab a").click(function() {
		$("#tab_news .h2tab .current img").attr("src", function(){ this.src = this.src.replace("_current.gif","_off.gif"); });
		$("img", this).attr("src", function(){ this.src = this.src.replace(/_(off|on).gif/,"_current.gif"); });
		$(this).parent().addClass("current").siblings().removeClass("current");
		$($(this).attr("href")).show().siblings("table").hide();
		return false;
	});
});

