﻿$(document).ready(function() {
    $('#mainMenu a').mouseover(function() {
        if (!$(this).hasClass('hover')) {
            $(this).addClass('hover');
        }
    }).mouseout(function() {
        if ($(this).hasClass('hover')) {
            $(this).removeClass('hover');
        }
    });

    $('a[@href^=http://]').click(function(event) {
        window.open(this.href);
        event.preventDefault();
    });
});