// Welcome to Tipster! Before you start, make sure you've read and agree to the
// "Conditions of Use" in the HTML document below.


// This script is object orientated.
// It works by creating "tip objects", each of which corresponds to a DIV in the page below.
// Each object has a 'template' used for formatting tips, and one or more tips to show.
// Here are some examples to get you started:


// First, create a new tip object, and pass it its own name so it can reference itself.
var docTips = new TipObj('docTips');
with (docTips)
{
 template = '<table bgcolor="#000000" cellpadding="2" cellspacing="0" width="%2%" border="1" border-color="yellow">' +
  '<tr><td><table bgcolor="#000000" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass"><center>%3%</center></td></tr></table></td></tr></table>';

 doFades = false;
 tipStick = 1;

 tips.OffHrs = new Array(13, 6, 130, 'MTWR 3 - 4 pm');

}