<!-- 
var space = " ";
var pos = 0;
var msg = ":: Welcome to Newsleader Media Consultancy ::";

function Scroll()
{
document.title = msg.substring(pos, msg.length)/* + space +msg.substring(0,pos)*/;
document.status = msg;

pos++;
if (pos > msg.length) pos = 0;
/*window.setTimeout("Scroll()", 100);*/
}
Scroll();
-->
