﻿$(document).ready(function() {
    // Document ready

    // Prepare the drop-down "PRODUCTS" menu
    // (Other menu effect options are commented out)
    $("td#products-title").hoverIntent(
        function() {
            $("div#products-dropdown").slideDown("fast");
            //$("div#products-dropdown").fadeIn("fast");
            //$("div#products-dropdown").show("fast");
        },
        function() {
            $("div#products-dropdown").slideUp("fast");
            //$("div#products-dropdown").fadeOut("fast");
            //$("div#products-dropdown").hide("fast");
        }
    );

    // On the LiveAddress product page, we may need to scroll
    // the user down to the price list if they click certain links.
    $("a.api_trial_link").click(function() {
        // Highlight the table    
        $("#api_price_list").css("border", "4px solid #663366");
        // Scroll
        $("html, body").animate({
            scrollTop: $("#api_price_list").offset().top - 200
        }, 1000, function() {
            // Un-highlight the table
            $("#api_price_list").css("border", "0px");
        });
    });
});

// Preload the rollover image on the navigation bar for quick performance
img = new Image();
img.src = "/App_Themes/Normal/images/navbar_bg_2.png";
