$(document).ready(function(){

	var arrlinks = [ "#area1", "#area2" ];

	$("#pmarea1").hover(function () {
    	$("#otop_l").stop(true, true).fadeIn("slow");
	}, 
  	function () {
		$("#otop_l").stop(true, true).fadeOut("slow");
	});
	$("#pmarea2").hover(function () {
    	$("#otop_r").stop(true, true).fadeIn("slow");
	}, 
  	function () {
		$("#otop_r").stop(true, true).fadeOut("slow");
	});
	$("#pmarea1").click(function() {
		$('#page').fadeOut('fast', function() {
		});
		$('#page').fadeIn('normal', function() {
		});
	});
	$(window).unload(function() {
		$('#page').fadeOut('fast', function() {
		});
	});
});
