$(document).ready(function()
{
    $('a').click(function()
    {
        if( ($(this).attr('href')).indexOf('globeaz.gov') >= 0 || ($(this).attr('href')).indexOf('http://') == -1 )
        {
            return true;
        }
        else
        {
            $('#Body').prepend('<div class="ExternalSiteMsg">' + 
                               '<div class="MsgTitle">' +
                                   '<p>External Site Warning</p>' +
                               '</div>' +
                               '<p><strong>You are now leaving the City of Globe website.</strong></p>' +
                               '<p>The City of Globe does not control this external website  		and cannot guarantee its content and subsequent links.</p>' +
                               '<a class="MsgCancel" href="#">Cancel</a>' +
                               '<a class="MsgContinue" href="' + $(this).attr('href') + '">Continue &raquo;</a>' +
                               '<div class="Clear">&nbsp;</div>' +
                           '</div>');
                           
            return false;
        }
    });
        
    $('.MsgCancel').live('click', function()
    {
        $('.ExternalSiteMsg').remove();
        
        return false;
    });
});
