
var msg = "Education Funding Solutions a division of  Denise J. Boisvert & Associates -- Helping families plan for higher education.";
var spacer = "     ";
var pos = 0;
function ScrollMessage() {
   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();

function preloader() 
{
     // counter     var i = 0;
     // create object     imageObj = new Image();
     // set image list     images = new Array();     images[0]="images/m1.gif"     images[1]="m2.gif"       images[2]="images/nav1.gif"     images[3]="nav2.gif"      // start preloading     for(i=0; i<=3; i++)      {          imageObj.src=images[i];     }

} 


