﻿// jQuery Startup Script

// add any startup methods here
// make sure you have already included them in a script reference before this file

$(document).ready(function() {

    // setup stylesheet switcher
    stylesheetOnLoad();
    $(window).unload(function() { stylesheetOnUnload(); });

    // preload all css images
//    $.preloadCssImages();

    // UFO flash loader example
    // dont forget to include the ufo.js script
    // dont forget the # at the start of the jquery if()
/*    if ($("#flash_container_home").length) {
        var FO = { movie: "/site/flash/banner2.swf", width: "512", height: "135", majorversion: "6", build: "0" };
        UFO.create(FO, "flash_container_home");
    }*/

});
