/*function test()
{
var t=new Array(4);
t[0]="Hello";
t[1]="Hello1";
t[2]="Hello2";
t[3]="Hello3";
	for(i=0;i<4;i++)
	{
	a=t[i];
	if(document.getElementById("tbox").innerHTML=="")
	{
	document.getElementById("tbox").innerHTML="<input type=text name=ebox class=selectsmall>"+a;
	//alert(a);
	start();
	}
	else
	{
	document.getElementById("tbox").innerHTML="";
		if(i>4)
			{
				i=0;
			}
	}
	}

}
function start()
{
	//alert("hi");
	//setInterval("test()",50);
for(j=1;j<=10;j++);
	{
//alert("hi"+j);
	}
	
	
}
*/




var CurrentMsg = 'Loading....';
function update(msg) {
var pad_str="";
n = msg.length;
if(n<72) {
pad = (73-n)/2;
for(var i=0; i<pad; i++) {
pad_str+=" "; 
   }
}
CurrentMsg = pad_str + msg;
document.getElementById("tbox").innerHTML= CurrentMsg;  
//document.messages.field.value = CurrentMsg;  
clearTimeout(timer);
timer = setTimeout("idleMsg()",9000);
}
function MakeArray(n) {
this.length=n;
for(var i = 1; i<= n; i++) {
this[i] = "";
}
return(this);
}
var index = 1;
var notice_num = 6;
var notices = new MakeArray(notice_num);
notices[1]="&quot;Wow, and double-wow. I thought I knew how to network, but Jeffrey Meshel does it on a mega-level, and teaches some of us old dogs some pretty amazing new tricks. I am impressed, and would urge everybody, young, old, and somewhere in the middle to read this, and employ his brilliant tactics and tips. You can't miss with ONE PHONE CALL AWAY!&quot;<br><br>---<em><b>Harvey Mackay</b>, #1 Bestselling Author of SWIM WITH THE SHARKS WITHOUT BEING EATEN ALIVE, and FIRED UP</em>";
notices[2] = "&quot;Jeff Meshel is one of those <strong>rare individuals who says what he believes</strong> and does what he says. He has spent most of his adult life being helpful to others and in return his life is full of richness.&quot;<br><br>&#8212;<em><b>Richard Lavin</b>, Co-Founder,<br>TIGER 21</em>";
notices[3] = "&quot;Only someone who has the knowledge and experience equal to that of Jeffrey Meshel deserves the right to tell the story with such authority. <b>Bravo to Jeff, the master networker!</b>&quot;<br><br>&#8212;<em><b>George A. Naddaff</b>, Founder, <br>Boston Market;Chairman & Co-CEO, KnowFat! Franchise Company</em>";
notices[4] = "&quot;Jeffrey proves that who you know can make you rich. This is a sure-fire blueprint for making more contacts, more sales and more money!&quot;<br><br>&#8212;<em><b>Larry Winget</b>, author of Shut Up,Stop Whining & Get A Life</em>";    
notices[5] = "&quot;A must read! Jeff is the consummate networker! Amazing insights and steps to improve your own skills, for a lifetime. If one follows his advice, it will definitely move you to the next level. The best investment you can make is to purchase this book!!!&quot;<br><br>&#8212;<em><b>Larry Bartimer</b>,Hedge Fund Specialist </em>";
notices[6] = "&quot;I can’t tell you how much I advocate Jeff’s brand of extreme generosity for mutual success– personally, Jeff is always looking for ways to help others without expecting anything in return. Reading One Phone Call Away is Jeff’s next gift to all of us. If you put Jeff’s street smart playbook into action in your life, you can expect results that will blow you away.&quot;<br><br>---<em><b>Keith Ferrazzi</b></em>, <em>Author of NEVER EAT ALONE: And Other Secrets To Success, One Relationship At A Time</em>";




var timer = setTimeout('idleMsg()',0);
function nochange() {

document.getElementById("tbox").innerHTML= CurrentMsg; 
    
//document.messages.field.value = CurrentMsg;  
}
function idleMsg() {
update(notices[index++]);                           
if(index>notice_num) { 
index=1; 
   }  
}
