// 展示会速報スライドタブ
$(function(){
	$('.exhibisionSlideTab').tabSwitch('create',{width: 680, height: 135});
	$('.exhibisionTabSelect').click(function(e){
		$('.exhibisionSlideTab').tabSwitch('moveTo',{index: parseInt($(this).attr("rel"))});
		e.preventDefault();
		setExhibisionTabIndex();
	});
});
var setExhibisionTabIndex = function(){
        $(".exhibisionTabSelect" + ".TabSelected").removeClass("TabSelected");
        $(".exhibisionTabSelect").eq(parseInt($(".exhibisionSlideTab").tabSwitch('index'))).addClass("TabSelected");
}

// 特集スライドタブ
$(function(){
	$('.specialSlideTab').tabSwitch('create',{width: 340, height: 135});
	$('.specialTabSelect').click(function(e){
		$('.specialSlideTab').tabSwitch('moveTo',{index: parseInt($(this).attr("rel"))});
		e.preventDefault();
		setSpecialTabIndex();
	});
});
var setSpecialTabIndex = function(){
        $(".specialTabSelect" + ".TabSelected").removeClass("TabSelected");
        $(".specialTabSelect").eq(parseInt($(".specialSlideTab").tabSwitch('index'))).addClass("TabSelected");
}

