﻿function createBookmarkLink(url, title) {
    if (window.sidebar) { // Mozilla Firefox Bookmark
        alert("Please note that bookmarks added this way in Firefox are set to load in to the sidebar by default. To remedy this, when you have added the bookmark please right-click it, choose Properties, and then uncheck the Load in Sidebar checkbox. Thank you and sorry for the inconvenience!");
        window.sidebar.addPanel(title, url, "");
    }
    else if (window.external) { // IE Favorite
        window.external.AddFavorite(url, title);
    }
    else {
        alert("Sorry, auto-bookmarks are not available for your browser. Press Ctrl + D to bookmark this page.");
    }
}

function preloadImages(arrayOfImages) {
    $(arrayOfImages).each(function() {
       (new Image()).src = this;
    });
}

