﻿$(window).load(function () {

    $("div#logoParade").smoothDivScroll({ autoScroll: "onstart", autoScrollDirection: "endlessloopright", autoScrollStep: 1, autoScrollInterval: 25, visibleHotSpots: "always" });
    //$("div#logoParade").hide();

    // Logo parade
    $("div#logoParade").bind("mouseover", function () {
        $(this).smoothDivScroll("stopAutoScroll");
    }).bind("mouseout", function () {
        $(this).smoothDivScroll("startAutoScroll");
    });

    //$("div#logoParade").show();
});

