// JavaScript Document
var msgNum = 0;
var rotateSpeed = 3500;
//Scroll Text
var messages=new Array();

messages[0]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Are You Emotionally Balanced?</font><font color='#996600'> Balance Your Emotions NOW!</font></b></font></center>" ;
messages[1]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Which link your health chain needs?</font><br><font color='#996600'>'Positive Vibrations' is the missing link...!</font></b></font></center>" ;
messages[2]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Behavior is treat-less!</font><font color='#996600'> There are many other ways!</font></b></font></center>" ;
messages[3]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Your WILL dictates your WAYS</font><font color='#996600'> and we recharge you WILL!</font></b></font></center>" ;
messages[4]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Why worry makes you weary?</font><font color='#996600'> There is very simple theory..!</font></b></font></center>" ;
messages[5]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Fear - Phobia bother why?</font><font color='#996600'> Feel Relaxed and Skip High..!</font></b></font></center>" ;
messages[6]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Bedwetting muddle lost to shame!</font><br><font color='#996600'>Baby is always right..!! Whom to Blame?</font></b></font></center>" ;
messages[7]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Tutor, counselors all the time...!</font><font color='#996600'> Why your child doesn't shine?</font></b></font></center>" ;
messages[8]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Very weak in decision making...</font><br><font color='#996600'> Be an executive who always shines!</font></b></font></center>" ;
messages[9]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Uncontrolled desire of surfing ... Chatting?</font><br><font color='#996600'>Slow at work but sharp in dawdling!</font></b></font></center>" ;
messages[10]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Lovesick - Break heart - Breach of promise...!</font><br><font color='#996600'>Don't be frustrate... get rid of it!</font></b></font></center>" ;
messages[11]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Shed your shy... Blossom the sky...</font><font color='#996600'> Don't worry, we let you Fly...!</font></b></font></center>" ;
messages[12]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Can Zero be better than Minus?</font><br><font color='#996600'>Yes - Lessen your Negative Emotions.!</font></b></font></center>" ;
messages[13]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Negative approach towards life,</font><br><font color='#996600'>May wrecks your entire psyche!</font></b></font></center>" ;
messages[14]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Terror - Panic once in a life,</font><font color='#996600'> May change your entire psyche..!</font></b></font></center>" ;
messages[15]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Don't get confused, never dither...</font><br><font color='#996600'> Open your mind, There is a cure!</font></b></font></center>" ;
messages[16]="<center> <font face='Arial' size='3'><b><font color='#FF3300'>Floral essence thrice a day... </font><br><font color='#996600'>Molds the psyche in a positive way ...!!</font></b></center>" ;

function rotateMsg(){
  if (msgNum < (messages.length - 1)){
    msgNum++;
  }
  else{
    msgNum = 0;
  }
  //Set title
  document.getElementById('rotate_msg').innerHTML = messages[msgNum];
  setTimeout('rotateMsg()', rotateSpeed);
}

