(function () {
    // Make it so that a click on the logo at the top of the page brings you 
    // to the home page
    var main = document.getElementById('main');
    var home_link = document.getElementById('home');
    home_link = home_link ? home_link.href : 'http://arapehlivanian.com/';

    function get_y_pos(e) {
        return e.clientY ? e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) : e.paygeY;
    }

    main.onclick = function (e) {
        e = e || event;
	var y_pos = get_y_pos(e);
	if (y_pos <= 60) {
	    document.location = home_link;
	}
    }
    main.onmousemove = function (e) {
        e = e || event;
	var y_pos = get_y_pos(e);
	if (y_pos <= 60) {
	    this.style.cursor = 'pointer';
	} else {
	    this.style.cursor = 'default';
	}
    }
})();

