// 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 contains a 'template' used for formatting tips, and settings for that object.
// Here are some examples to get you started:


// Here's a second demo tip object. Feel free to delete it if you're not using it!
// I've included a tip header here in this template, %3% is the header text and %4% is
// now the main text. As you can see you can basically format your tips any way you want.
// This tip also includes mouse event handlers to show a second-level tip, just like in
// the body of the page below, so you can nest tips within tips, and a 'tipStick' of 0 so
// it never follows the mouse.
var staticTip = new TipObj('staticTip');
with (staticTip)
{
 // I'm using tables here for legacy NS4 support, but feel free to use styled DIVs.
 template = '<table bgcolor="#000000" cellpadding="0" cellspacing="0" width="%2%" border="0">' +
  '<tr><td><table cellpadding="4" cellspacing="0" width="100%" border="0">' +
  '<tr><td bgcolor="#66AAD7" align="center" height="18" class="tiptop">%3%</td></tr>' +
  '<tr><td bgcolor="#E5F1F8" align="left" height="*" class="tipbottom">%4%</td></tr>' +
  '</table></td></tr></table>';

 // HIERARCHIAL TIPS: To call one tip object from within another tip object, make sure you
 // pass the a reference to the current object as the second parameter to the show() function.
 tips.wqln = new Array(12, -18, 175, '<strong>GED Connection on WQLN</strong>',
  'County - Channel 18<br/>' +
  'City - Channel 21<br/><br/>' +
  'Tue. - 6AM, 9AM, 5PM, 9PM<br/>' +
  'Thu. - 6AM, 9AM, 5PM, 9PM<br/>' + 
  'Sat. - 2:30PM-4:30PM<br/>' + 
  'Sun. - 3PM-5PM<br/>');

 tips.whyy = new Array(12, -18, 175, '<strong>GED Connection on WHYY</strong>',
  'Currently, WHYY does not air GED Connection.<br/>');

 tips.wqed = new Array(12, -18, 175, '<strong>GED Connection on WQED</strong>',
  'Currently, WQED does not air GED Connection.<br/>');

 tips.wpsu = new Array(12, -18, 175, '<strong>GED Connection on WPSU</strong>',
  'Channel 3 (WPSX)<br/>' +
  'Sat. – 6:30AM<br/>');

 tips.witf = new Array(12, -18, 175, '<strong>GED Connection on WITF</strong>',
  'Currently, WITF does not air GED Connection.<br/>');

 tips.wvia = new Array(12, -18, 175, '<strong>GED Connection on WVIA</strong>',
  'Channel 44<br/>' +
  'Sun. - 1AM-2AM<br/>');

 tips.wlvt = new Array(12, -18, 175, '<strong>GED Connection on WLVT</strong>',
  'Currently, WLVT does not air GED Connection.<br/>');

 tipStick = 0.1;
 
 // Finally, you can set some optional properties to customise the behavious of this object.
 //
 // How much of a delay do you want between pointing and action? Defaults are:
 //showDelay = 50;
 //hideDelay = 200;
 //
 // False will hide tips instantaneously. Fading only works under IE/Win and NS6+.
 //doFades = false;
 // You can change the minimum and maximum opacity percentages, defaults:
 minAlpha = 0;
 maxAlpha = 94;
 //
 // How fast the transparency changes (between 1 and 100), higher means faster fades.
 //fadeInSpeed = 20;
 //fadeOutSpeed = 20;
 //
 // Tip stickiness, from 0 to 1, defines how readily the tip follows the cursor. 1 means it
 // follows it perfectly (the default), 0 is a static tip, and decimals are 'floating' tips.
 //tipStick = 0.2;
 //
 // IE 5.5+ select box fix. This will enable tips to appear over <SELECT> elements in the page.
 //IESelectBoxFix = true;
}







//-->