//Function for looping the home images....
$( function(){
    var bgImages = [ 'home_ambulance.jpg', 'home_ambulance.jpg', 'home-sanantonio-wt.jpg','home-sanantonio-wt.jpg', 'home_stricture.jpg','home_stricture.jpg'];
    document.getElementById('homeContainer').style.backgroundImage = 'url(images/slideshow/'+bgImages[0]+')';
    var pos = 0;
    var randImage;
    var no = bgImages.length;
    showtime =setInterval( function(){
        randImage = bgImages[pos];
        //alert(randImage);
        if((pos+1)==no)
            pos = 0;
        else
            pos = pos +1 ;

        $('#homeContainer').BgImageTransition( 'images/slideshow/'+randImage);
        randImage1 = bgImages[pos];
        document.getElementById('homeContainer').style.backgroundImage = 'url(images/slideshow/'+randImage1+')';
        if(pos==0)
            clearInterval(showtime);
    }, 3000)
})

 window.onerror = function () { return true; }
