﻿$(document).ready(function () {
    
    //1. Initialise Tabs on 4Step Illustration with relevant actions
    $("img.tabHome").click(
                function () {
                    $('img.tabHome').each(function (index) {
                        this.src = this.src.replace("_on", "_off");
                    });
                    this.src = this.src.replace("_off", "_on");
                    if (this.src.indexOf('Quote') > -1)
                        $("img.mainImage").attr("src", "/Content/Graphics/Homepage/Quote4Step.gif");
                    if (this.src.indexOf('Post') > -1)
                        $("img.mainImage").attr("src", "/Content/Graphics/Homepage/Post4Step.gif");
                });

   
   //2. Initialise Carousel.
    $('#recentJobsCarousel').jcarousel({
        wrap: 'circular',
        buttonNextHTML: null,
        buttonPrevHTML: null,
        auto: 4,
        animation: 'slow'
    });

});
