/***************************/
//@Author: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(){
	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();
	//centering
	$("#popupContact").css({
		"position": "absolute",
		"top": 900,
		"left": 520
	});
	//only need force for IE6
	
	$("#backgroundPopup").css({
		"height": windowHeight
	});
	
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	
	//LOADING POPUP
	//Click the button event!
	$("#disp1").click(function(){
		var sHtml = "一、山水观光游：寨寮溪（含九珠潭景区、花岩国家森林公园、漈门溪景区）、桐溪景区、圣井山景区<br>";
		sHtml = sHtml +"二、乡村体验游：神洲农家乐、谷歌农家乐、金潮港观光农场（瓯柑）、梅屿番茄基地（大番茄）、马屿草莓实验场（草莓）、桐浦三川番茄枣基地（小黄瓜、小番茄）、强华大棚草莓基地（草莓、小番茄）、垟山溪农家乐、新垟滩农家乐、大京杨梅特色村<br>";
		sHtml = sHtml +"三、史迹文化游：中国木活字印刷文化村、玉海楼、利济医学堂、板寮浙南游击纵队旧址、肇平垟革命烈士纪念馆<br>";
		sHtml = sHtml +"四、体育健身游：巾仙溪漂流、双溪寨漂流<br>";
		sHtml = sHtml +"五、海洋休闲游：休闲捕鱼（瑞洋休闲渔业公司、光平休闲渔业公司）、铜盘岛景区、瑞安水产城。<br>";
		document.getElementById("contactArea").innerHTML = sHtml;
		centerPopup();
		//load popup
		loadPopup();
		return false;
	});
	$("#disp2").click(function(){
		var sHtml = "无骨花灯、吹糖人、做糖金杏、竹编、木雕、串蓑衣、木活字印刷、跑马灯、米塑、瓯绣";
		document.getElementById("contactArea").innerHTML = sHtml;
		centerPopup();
		//load popup
		loadPopup();
		return false;
	});	
	$("#disp3").click(function(){
		var sHtml = "瑞安市天伦健身器材有限公司、瑞安市晓银针织有限公司、瑞安市潘瑞源食品有限公司、瑞安市好滋味食品厂、瑞安市粮城米业有限公司、瑞安市绿洲生物科技有限公司、瑞安市南极食品厂、茶叶、清明饼、菜籽油、小番茄、小黄瓜、本地鸡蛋、优质米";
		document.getElementById("contactArea").innerHTML = sHtml;
		centerPopup();
		//load popup
		loadPopup();
		return false;
	});	
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});

});
