//function scrapEmail() {
//	var mail = "mailto:";
//	mail += "?subject=请到济州来感受特别的体验。";
//	mail += "&body=可以在以下网址确认, " + location.href;
//	location.href = mail;
//}
function scrapEmail() {
	var mail = "mailto:";
	mail += "?subject=Feel special experiences through the visit to Jeju!";
	mail += "&body=It can be confirmed with the site address below, " + location.href;
	location.href = mail;
}

function addFavorite() {
	if(document.all) window.external.AddFavorite('http://'+Website.domain, Website.title)
}

var MainMenu = {

	current : null,

	over : function(event, img, layer) {
		var me = Event.element(event);
		me.src = img;

		if(this.current) {
			this.current.hide();
			this.current = null;
		}

		var layer = $(layer);
		if(!layer) return;
		this.current = layer;
//		layer.show();
	},

	out : function(event, img, layer) {
		var me = Event.element(event);
		me.src = img;
	}
}