﻿// petiya.com - jq-splash.js

/// <reference path="../../../Scripts/JQuery/jquery-1.4.1-vsdoc.js"/>
$(document).ready(function () {

    jQuery.preLoadImages("../images/splash-bg1.jpg");

    $(".bottom-menu").hover(function () {
        $(this).next(".bubble").animate({ opacity: "show", top: "-75" }, "slow");
    }, function () {
        $(this).next(".bubble").animate({ opacity: "hide", top: "-85" }, "fast");
    });
});

// Preload Images
(function ($) {
    var myCache = [];
    $.preLoadImages = function () {
        var myArgLen = arguments.length;
        for (var i = myArgLen; i--; ) {
            var myImage = document.createElement('img');
            myImage.src = arguments[i];
            myCache.push(myImage);
        }
    }
})(jQuery)
