
/* Copyright © Website Engineers Limited */

// Page Load
$(document).ready(
    function () {
        // Models
        $("div.Model").click(
            function () {
                var url = $(this).find("h4 a").attr("href");
                if (url != undefined)
                    document.location = url;
            }
        );
        // Derivatives
        $("div.Derivatives p.Offer").click(
            function () {
                document.location = $(this).find("a").attr("href");
            }
        );
        $("div.Derivatives p.Derivative").click(
            function () {
                document.location = $(this).attr("title");
            }
        );
        $("div.DerivativesGroup div.DerivativeList").hide();
        $("div.DerivativesGroup p.DerivativeMore").click(
            function () {
                var showStatus = $(this).find("span.MoreLess").html();
                if (showStatus == "more") {
                    $(this).find("span.MoreLess").html("less");
                    $(this).parent().find("div.DerivativeList").slideDown();
                }
                else {
                    $(this).find("span.MoreLess").html("more");
                    $(this).parent().find("div.DerivativeList").slideUp();
                }
            }
        );
    }
);

/* End */

