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

$(function(){
	$("#movie").click(
		function () {
			window.open("movie/virtual_cruising.html", "", "width=720,height=610");
		}
	);
});
$(function(){
	$("#movie").mouseover(
		function () {
			$(this).css({cursor: "pointer" });
		}
	);
});


