/**
 * JavaScript behaviors for layout elements.
 *
 * @copyright  Copyright (c) 2005-2008 Found Line, Inc. (http://www.foundline.com/)
 * @version    $Id: layout.js 29 2008-08-12 17:50:07Z jason.pelletier $
 */

jQuery.preloadImages = function() {
    for(var i = 0; i < arguments.length; i++)
    {
        jQuery("<img/>").attr("src", arguments[i]);
    }
};

$("document").ready(function() {
   $.preloadImages("/images/nav-furnishings-hover.png", "/images/nav-decorating-hover.png", "/images/nav-staging-hover.png", "/images/nav-about-hover.png", "/images/nav-contact-hover.png");
   
   $("a.external").click(
        function () {
            urchinTracker(this.href);
    });//click
    $("a.pdf").click(
        function () {
            urchinTracker(this.href);
    });

});