// -*- coding:utf-8 -*-

var to_href;

$(document).ready(function(){
	$("#widecontent").css('top', '-515px');
	$("#widecontent").css('right', '10000px');

	$(window).load(function() {
		$("#widecontent").css('right', '80px');

		$("#widecontent").animate({top: "51px"}, 2500);
	    }
	    );

	$("#menu ul li").click(function(e) {
		e.preventDefault();
		
		to_href =  $(this).attr("href");
		if (to_href){
		    $("#widecontent").slideUp(1500, finnishMenuClick);
		    return false;
		};
	    });

});


function finnishMenuClick() {
    window.location.href = to_href;
    return true; 
} 
