dom.event.addEventListener(window, "load", check_cookie2);

function check_cookie2() {
	var mnum;
	
	if(document.getElementById('trailer')) {
		dom.event.addEvent(util.$('trailer'), "click", tag1);
		dom.event.addEvent(util.$('trial1'), "click", Trial1);
		dom.event.addEvent(util.$('trial2'), "click", Trial2);
		mnum = 1;
		dom.misc.setCookie("movieType", mnum, 14, '/', '', '');
	} else {
		if(!document.getElementById('gallery')) {
			mnum = 1;
			dom.misc.setCookie("movieType", mnum, 14, '/', '', '');
		}
	}
	mnum = dom.misc.getCookie("movieType");
	
	if(!mnum) {
		mnum = 1;
		dom.misc.setCookie("movieType", mnum, 14, '/', '', '');
	} else {
	}
	function tag1(evt) {
		dom.event.preventDefault(evt);
			mnum = 2;
			dom.misc.setCookie("movieType", mnum, 14, '/', '', '');
		location.href = "../gallery/index.html";
	}
	function Trial1(evt) {
		dom.event.preventDefault(evt);
			mnum = 3;
			dom.misc.setCookie("movieType", mnum, 14, '/', '', '');
		location.href = "../gallery/index.html";
	}
	function Trial2(evt) {
		dom.event.preventDefault(evt);
			mnum = 4;
			dom.misc.setCookie("movieType", mnum, 14, '/', '', '');
		location.href = "../gallery/index.html";
	}
	//alert(document.cookie);
}



	
