
/* Copyright © Website Engineers Limited */

// Page Load
$(document).ready(
    function () {
        // Comments
        $("div.Comments").cycle(
            {
                fx: 'fade',
                timeout: 5000,
                speed: 1000,
                pause: 1,
                random: 1
            }
        );
        // Recently Viewed
        $("div.RecentlyViewed div.Vehicle").click(
            function () {
                document.location = "/car_details/" + this.id.replace("Vehicle", "") + ".aspx";
            }
        );
        // Social
        $("div.FacebookLike").html('<iframe src="http://www.facebook.com/plugins/like.php?href=' + document.URL + '&amp;layout=button_count&amp;show_faces=true&amp;width=300&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:175px; height:21px;" allowTransparency="true"></iframe>');
        $("div.TwitterTweet").html('<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>');
        $("div.Facebook").html("<b>Join us on Facebook</b><br />For discount codes, special offers & competitions.<br />facebook.com/mjacarsales");
        $("div.Facebook").click(
            function () {
                window.open("http://www.facebook.com/mjacarsales");
            }
        );
        $("div.Twitter").html("<b>Follow us on Twitter</b><br />For discount codes, special offers & competitions.<br />twitter.com/mjacarsales");
        $("div.Twitter").click(
            function () {
                window.open("http://twitter.com/#!/mjacarsales");
            }
        );
        // Feature
        $("div.Feature img").click(
            function () {
                document.location = "/special-offer-recently-reduced.aspx";
            }
        );
        // Bot
        $("div.Bot div.Heading").click(
            function () {
                if ($("div.Bot div.Text").is(":visible")) {
                    $("div.Bot div.Text").hide();
                }
                else {
                    $("div.Bot div.Text").show();
                }
            }
        )
        // Forms
        $("form").show();
    }
);

/* End */

