﻿ /// <reference path="jquery-1.4.1.js" />
$(document).ready(function () {
    $("#NG li").mouseover(function () {
        $(this).addClass("NavIn");
    }).mouseout(function () {
        $(this).removeClass("NavIn");
        $(this).addClass("NavOut");
    });
    $("a").attr("target", "_blank");
});


