/* Author: 

*/

$(document).ready(function () {
    $('#Header').click(function (e) {
        if (e.pageY < 150)  // only topmost part of page
            window.location.href = '/';
    });
});






















