var myquotes = new Array(
        '<b>Health Line:</b> <span>+91 9924626169</span> (For Appointment & Counseling)',
        '<b>Health Line:</b> <font>+91 9924626169</font> (For Appointment & Counseling)' // Leave the last quote without a comma at the end
        );
 
function rotatequote()
{
        thequote = myquotes.shift(); //Pull the top one
        myquotes.push(thequote); //And add it back to the end
       
        document.getElementById('healthline').innerHTML = thequote;
        // This rotates the quote every 10 seconds.
        // Replace 10000 with (the number of seconds you want) * 1000
        t=setTimeout("rotatequote()", 500);
}
 
rotatequote();

