var msg = "Puerto Vallarta Review is the new online magazine to feature Vallarta and surrounding area with virtual panoramic maps, printable pdf guides, and fiesta guides!";
var pos = 0;
var spacer = " *** ";
var time_length = 200;
function ScrollTitle()
{
 document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
 pos++;
 if (pos > msg.length) pos=0;
 window.setTimeout("ScrollTitle()",time_length);
}
ScrollTitle();
