
/* Copyright © Website Engineers Limited */

// Page Load
$(document).ready(
    function () {
        // Feature Image
        $(".Insurance1").hover(
            function () {
                featureImage.show("CarInsurance");
            }
        );
        $(".Insurance2").hover(
            function () {
                featureImage.show("HomeInsurance");
            }
        );
        $(".Insurance3").hover(
            function () {
                featureImage.show("HNWInsurance");
            }
        );
        $(".Insurance4").hover(
            function () {
                featureImage.show("OtherServices");
            }
        );
        // Quote
        $(".Insurance1 input.Submit").click(
            function () {
                document.location = "https://www.nowellandrichards.co.uk/car-insurance-quote.aspx";
            }
        );
        $(".Insurance2 input.Submit").click(
            function () {
                document.location = "https://www.nowellandrichards.co.uk/home-insurance-quote.aspx";
            }
        );
    }
);

/* End */

