$(function(){
	$("#movieclose").click(
		function () {
			window.close();
		}
	);
});
$(function(){
	$("#movieclose").mouseover(
		function () {
			$(this).css({cursor: "pointer" });
		}
	);
});

$(function(){
	$("#linkceremony").click(
		function () {
			window.open("movie/ceremony.html", "", "width=600,height=420");
		}
	);
});
$(function(){
	$("#linkceremony").mouseover(
		function () {
			$(this).css({cursor: "pointer" });
		}
	);
});


