function printbus()
{
        var date = new Date();
        var hours=date.getHours();
        var tod;
        if (hours>=00)
        {
                tod="06:25";
        }
        if (hours>=07)
        {
                tod="12:00";
        }
        if (hours>=12)     
        {
                tod="14:45";
        }
        if  (hours>=15)
        {
                tod="16:50";
        }
        if  (hours>=17)
        {
                 tod="19:05";
        }
        if  (hours>=19)
        {
                 tod="xx:xx";
        }
        document.writeln('' + tod );
}
<!-- 

printbus();

 -->
