$(function(){
	document.oncontextmenu=function(){return false};
	//滚动新闻
	scorllNews();
	//幻灯片
	focusIndex();
	//新闻tab
	newsTab();
	//友情链接
	linksMarquee();
	//黄金礼品
	indexHot();
	//产品大图
	if ($("#prosImgBig").length>0) {
		prosImg();
	};
	if ($("#goldListMenu").length>0) {
		goldListMenu();
	};
});

//滚动新闻
function scorllNews(){
	var _scorllNews=$("#scorllNews>ul");
	var _max=_scorllNews.children("li").length-1;
	var i=0;
	window.scrollNewsAuto=setInterval(
		function(){
			i==_max?i=0:i++;
			_scorllNews.children("li:eq(0)").animate({"margin-top":"-"+30*i+"px"},500)
		},
		5000
	)
};

//幻灯片
function focusIndex(){
		var _slider=$("#focus");
		var _sliderMain=$("#focusMain");
		var _sliderSub=$("#focusSub");
		sliderFlag=true;
		_sliderSub.children("li").click(function(){
			sliderFlag=false;
			var _eq=$(this).index();
			sliderShow(_eq);
		});
		sliderAuto();
		_slider.mouseleave(function(){
			if(!sliderFlag){
				sliderFlag=true;
			};
		});
		function sliderShow(_eq){
			_sliderSub.children("li:eq("+_eq+")").addClass("active").siblings().removeClass("active");
			_sliderMain.children("li:eq("+_eq+")").fadeIn().siblings().fadeOut();
		};
		function sliderAuto(){
			if (1==1){
				var _eq=_sliderSub.children("li.active").index();
				var _max=_sliderSub.children("li").length-1;
				_eq==_max?_eq=0:_eq++;
				sliderShow(_eq);
			};
			window.sliderShowTime=setTimeout(sliderAuto,5000)
		};
};

//银价
function goldPriceNav() {
	$("#goldPriceNav>ul>li").click(function(){
		var _eq=$(this).index();
		$(this).addClass("active").siblings().removeClass("active");
		$("div.goldPriceList:eq("+_eq+")").show().siblings("div.goldPriceList").hide();
	});
	$("div.goldPriceList>ul>li").click(function(){
		var _eq=$(this).index();
		$(this).addClass("active").siblings().removeClass("active");
		var _table=$(this).parents("div.goldPriceList").children("div.goldPriceTable");
		_table.find("tbody:eq("+_eq+")").show().siblings("tbody").hide();		
	});
};

//新闻tab
function newsTab() {
	$("#newsTabMain>li").click(function(){
		var _eq=$(this).index();
		$(this).addClass("active").siblings().removeClass("active");
		$("div.newsTabSub>ul:eq("+_eq+")").show().siblings().hide();
	});
};

//友情链接
function linksMarquee() {
	var _max=Math.ceil($("#linksMarquee>ul>li").length/2);
	if (_max>1){
		var i=0;
		setInterval(
			function(){
				i++;
				if (i==_max){
					i=0
				}
				var _top="-"+i*40+"px";
				$("#linksMarquee>ul").animate({"margin-top":_top},500)
			}
			,3000
		);
	};
};

//黄金礼品
function indexHot() {
	$("#indexHot").mouseover(function(){
		$(this).children("a").addClass("active")
		$("#indexHotMenu").show();	
	});
	$("#indexHotMenu").mouseleave(function(){
		$(this).hide();
		$("#indexHot").children("a").removeClass("active");
	});
	$(".indexPro>dd:gt(0)").mouseover(function(){
		$("#indexHot").children("a").removeClass("active");
		$("#indexHotMenu").hide();
	});
};

function prosImg(){
	$("#prosImgSmall>li").click(function(){
		$(this).addClass("active").siblings().removeClass("active");
		var sRc=$(this).find("img").attr("src");
		$("#prosImgBig>img").attr("src",sRc);
		
	});
	$("#prosImgBig").hover(
		function(){
			var sRc=$("#prosImgBig>img").attr("src");
			$("#proImgHuge").attr("src",sRc).show()
		},
		function(){
			$("#proImgHuge").hide()
		}
	)
};

function orderThis(){
	$("#orderPopOuter,#orderPopInn").height($(document).height());
	$("#orderPopOuter").show();
};

function goldListMenu(){
	$("#goldListMenu>h2").click(function(){
		var tHis=$(this);
		var Dom=$("#goldListMenu>ul");
		if (Dom.is(":visible")){
			tHis.removeClass("active");
			Dom.hide();
		}
		else {
			tHis.addClass("active");
			Dom.show();
		}
	})
}
