$(document).ready(function()
{
    $('#email_newsletter').focus(function()
    {
        if ($(this).val() == 'your email')
        {
            $(this).val('');
        }
    });

    $('#email_newsletter').blur(function()
    {
        if ($(this).val() == '')
        {
            $(this).val('your email')
        }
    });

    $('#header').click(function(e)
    {
        var x = e.pageX - $(this).offset().left;
        var y = e.pageY;

        if (x >= 86 && x <= 183)
        {
            if (y >= 33 && y <= 108)
            {
                window.location = base_url();
            }
        }
    });
});

function base_url()
{
    return 'http://www.newtownhouse.ie';
}
