	var featImages = new Array
	(    
	"images/hero_01.jpg",
	"images/hero_02.jpg",
    "images/hero_03.jpg",
	"images/hero_04.jpg",
	"images/hero_05.jpg",
	"images/hero_06.jpg"
	);

    function StartTheTimer()
    {
        if (secs==0)
        {
            secs = 10; //-OR- timerRunning=false;
            navleft(); //call the function when time expires
        }
        //self.status = secs;
        secs = secs - 1;
        if (timerRunning)
        {
            timerID = self.setTimeout("StartTheTimer()", delay);
        }
    }
	
	var howMany = featImages.length;
    var featNum = 0;
    var secs=0;
    var timerID = null;
    var timerRunning = true;
    var delay = 700;	
         
	 function startFeature()
	 {
	 
	   secs = 3; // Set the initial delay
	   StartTheTimer();
	 
		$("#featureShot").attr("src",featImages[featNum]);
	 }  
     
	function navleft() 
	{
		$("#featureShot").fadeOut("slow",function(){
         featNum++;
                  
	    if (featNum == howMany) {
	        featNum = 0;
	    }
	    $("#featureShot").fadeIn("slow").attr("src",featImages[featNum]);
        });    
	}
	