

jQuery(function($){	
	$(".ctab").switchTab({defaultIndex: "0", effect: "fade",titCell: "dt a", trigger: "click", delayTime: 250});
});


jQuery(function($){	
	$(".tab1").switchTab({defaultIndex: "-1", effect: "slide",titCell: "dt a", trigger: "mouseover", delayTime: 250,ismap: true});
});


jQuery(function($){	
	$(".tab").switchTab({defaultIndex: "0", effect: "fade",titCell: "dt a", trigger: "mouseover", delayTime: 250});
});

jQuery(function ($) {
    $(".tab2").switchTab({ defaultIndex: "0", effect: "fade", titCell: "dt a", trigger: "mouseover", delayTime: 0 });
});

$(function () {
	var obj = jQuery(this);
	obj.find("dt").children("a").mouseover(function(){
		 var index = obj.find("dt").children("a").index($(this));
		obj.find("dt span").children("a").each(function(i){  if(i == index){ $(this).show(); $(this).siblings().hide(); } });
	});
});

$(function(){
	$('a.growth').lightBox();
});

$(function(){
	$(".pmenu a").mouseover(
		function(){
				$(".pmenu a").removeClass("hover");
				$(this).addClass("hover");
			}
	);
});
