//tabAD by Dingo

$(document).ready(function(){
	var tabAdLen=$(".tab_nav li").length;
	var index=0;
	var tabAdTimer;
	
	$(".tab_nav li").mouseover(function(){
		index=$(".tab_nav li").index(this);
		showTabContent(index);
	}).eq(0).mouseover()
	
	
	
	$('.tab_content').hover(function(){
		clearInterval(tabAdTimer);
		},function(){
			tabAdTimer=setInterval(function(){
				index++;
				if(index==tabAdLen){index=0;}
				showTabContent(index);
		},6000);
	}).trigger("mouseleave");
	
	
})
	
	function showTabContent(index){
		$(".tab_content li").stop(true,true).fadeOut('fast').eq(index).stop(true,true).fadeIn('normal');
		//$(".tab_nav li").stop(true,true).animate({width:'100'},200).eq(index).stop(true,true).animate({width:'120'},200);
		$(".tab_nav li").stop(true,true).fadeTo('fast',0.6).eq(index).stop(true,true).fadeTo('fast',1);
		$(".tab_nav li").removeClass('on').eq(index).addClass('on');
	}
