
/* New window (add class "blank") */

$(function(){
    $('a.blank').click(function(){
        window.open(this.href);
        return false;
    });
});

jQuery.preloadImages = function() {
    for (var i = 0; i < arguments.length; i++) {
        jQuery("<img>").attr("src", arguments[i]);
    }
}

$.preloadImages("home-on.gif", "../images/main_nav/home-off.gif");
