jQuery(document).ready(function() {
			initMarquee();
});
function initMarquee(){
	new Marquee("marqueediv_w",0,1,100,80,80,0,0);
	new Marquee(
		"marquee-news-list",	//ID		"marquee"	容器ID		(必选)
		0,						//Direction	(0)		滚动方向	(可选,默认为0向上滚动) 可设置的值包括:0,1,2,3,"top","bottom","left","right" (0向上 1向下 2向左 3向右)
		10,						//Step		(1)		滚动的步长	(可选,默认值为2,数值越大,滚动越快)
		300,					//Width		(760)		容器可视宽度	(可选,默认值为容器初始设置的宽度)
		(60*5),					//Height		(52)		容器可视高度	(可选,默认值为容器初始设置的高度)
		50,						//Timer		(50)		定时器		(可选,默认值为30,数值越小,滚动的速度越快,1000=1秒,建议不小于20)
		3000,					//DelayTime	(5000)		间歇停顿延迟时间(可选,默认为0不停顿,1000=1秒)
		6000,					//WaitTime	(3000)		开始时的等待时间(可选,默认或0为不等待,1000=1秒)
		(60*1)					//ScrollStep	(52)		间歇滚动间距	(可选,默认为翻屏宽/高度,该数值与延迟均为0则为鼠标悬停控制,-1禁止鼠标控制)
	);
};

/*

function initSearchHeader(){
	if(getCookie("SV") != undefined && getCookie("SV") != ""  ){
		checkaction(getCookie("SN"));
		document.getElementById("headSel").style.display="none";
		document.getElementById("headSlected").innerHTML=getCookie("SV");
	}else{
		document.getElementById("headSel").style.display="none";
		document.getElementById("headSlected").innerHTML="景點";
	}
};
*/
/*
function initSearchHeader(){
	$('#fm-search-main').submit(function() {
		//$(this).css('border','#f00 solid 1px');
		var url,v = $('#input-search-main').val();
		if(v == ''){
			url = '/SearchSpot.php';
		}
		else{
			url = 'SearchSpotByKeyword.php?q='+v;
		}
		window.location=url;
		return false;
    });
};
*/


/*--- 首頁熱門城市 ---*/
function ChangeIndexCity(cid){
	if(cid==""){
		alert("請選擇一個城市！");
	}else{
		document.location.href = "/DetailCityInfo.php?id="+cid;
	}
}
