// JavaScript Document
    
$(function(){
		   
	//焦点图切换
	var aaa = function(i) {
		$("#tabBd .tabDetail").eq(i).show().siblings().hide();
		$("#tabHd a").eq(i).addClass("tabSelect").siblings().removeClass("tabSelect");
	};
	
	
	//自动切换
	var item = 0,
	    timer = setInterval(function(){
		aaa(item);
		item = (item+1) % 2;
	},6000);


	//鼠标经过缩略图切换
	$("#tabHd a").each(function(i){
		$(this).hover(function(){
			clearInterval(timer);
			aaa(i);
		}, function(){
			item = i + 1;
			timer = setInterval(function(){
				aaa(item);
				item = (item+1) % 2;
			},6000);
		});
	});
	
	//滚动图片
	$("#sliderShop").marquee({
				direction:"left",
				scrollDelay:50
			});
	
	$("#RollpeopleList").marquee({
				direction:"left",
				scrollDelay:50
			});
	
	//标签切换
	/*$("#tabHd a").each(function(e){
			$(this).bind('mouseover', function(){
				$(this).addClass("tabSelect").siblings().removeClass("tabSelect");				   
				$("#tabBd .tabDetail").eq(e).show().siblings().hide();				   
			})						
		});*/

});
