﻿// ***********************
// Heading #1
// ***********************
// For every heading, create a entry copying from here....
var heading1 = new TipObj('heading1');
with (heading1)
{
  // this is the HTML that the popup will appear inside of, set the two colours appropriately, the first colour is the
  // border of the popup area, and the second colour is the bgcolour of the content of the popup area
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  //
  // This is the ACTUAL content of the popup area, it can be HTML inbetween the single quotes, as per example #2
 tips.headingContent1 = new Array(5, 7, 500, 
 	'<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Peep and the Big Wide World Seasons 1-3</td></tr><tr><td valign="top"><img src="images/peep3.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">4-6</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool Educational</span></p></td></tr></table>');
}

// ***********************
// Heading #2
// ***********************

var heading2 = new TipObj('heading2');
with (heading2)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent2 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Skyland</td></tr><tr><td valign="top"><img src="images/skyland.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">9-12</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Action Adventure</span></p></td></tr></table>');
}

// ***********************
// Heading #3
// ***********************

var heading3 = new TipObj('heading3');
with (heading3)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent3 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Peep and the Big Wide World Seasons 1-4</td></tr><tr><td valign="top"><img src="images/peep.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">4-6</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool Educational</span></p></td></tr></table>');
}

// ***********************
// Heading #4
// ***********************
var heading4 = new TipObj('heading4');
with (heading4)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent4 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Max and Ruby</td></tr><tr><td valign="top"><img src="images/maxRuby.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #5
// ***********************
var heading5 = new TipObj('heading5');
with (heading5)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent5 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">If the World were a Village</td></tr><tr><td valign="top"><img src="images/village.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">7-11</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Children?s educational</span></p></td></tr></table>');
}

// ***********************
// Heading #6
// ***********************
var heading6 = new TipObj('heading6');
with (heading6)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent6 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Peep and the Big Wide World - Season 4</td></tr><tr><td valign="top"><img src="images/peep3.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">4-6</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool Educational</span></p></td></tr></table>');
}

// ***********************
// Heading #7
// ***********************
var heading7 = new TipObj('heading7');
with (heading7)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent7 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Best Ed</td></tr><tr><td valign="top"><img src="images/bestEd.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">8-12</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #8
// ***********************
var heading8 = new TipObj('heading8');
with (heading8)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent8 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Futz!</td></tr><tr><td valign="top"><img src="images/futz.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">9-14</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Action/Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #9
// ***********************
var heading9 = new TipObj('heading9');
with (heading9)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent9 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Jacob Two-Two Season 5</td></tr><tr><td valign="top"><img src="images/jacob.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">6-10</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #10
// ***********************
var heading10 = new TipObj('heading10');
with (heading10)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent10 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Postcards from Buster Season 2</td></tr><tr><td valign="top" width="77"><img src="images/postcard.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">6-10</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Adventure</span></p></td></tr></table>');
}

// ***********************
// Heading #11
// ***********************
var heading11 = new TipObj('heading11');
with (heading11)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent11 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Max And Ruby Season 3</td></tr><tr><td valign="top"><img src="images/maxRuby.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #12
// ***********************
var heading12 = new TipObj('heading12');
with (heading12)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent12 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Almost Naked Animals</td></tr><tr><td valign="top"><img src="images/ANA.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">6-11</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #13
// ***********************
var heading13 = new TipObj('heading13');
with (heading13)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent13 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Bash Boys</td></tr><tr><td valign="top"><img src="images/bashboyz.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">8-12</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy/Action</span></p></td></tr></table>');
}

// ***********************
// Heading #14
// ***********************
var heading14 = new TipObj('heading14');
with (heading14)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent14 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Survive This</td></tr><tr><td valign="top"><img src="images/survivormankids.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">8+</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Adventure</span></p></td></tr></table>');
}

// ***********************
// Heading #15
// ***********************
var heading15 = new TipObj('heading15');
with (heading15)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent15 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Tooque!</td></tr><tr><td valign="top"><img src="images/toque.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #16
// ***********************
var heading16 = new TipObj('heading16');
with (heading16)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent16 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Ertlings</td></tr><tr><td valign="top"><img src="images/ertlings.jpg" width="120" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">4-7</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy/Discovery</span></p></td></tr></table>');
}

// ***********************
// Heading #17
// ***********************
var heading17 = new TipObj('heading17');
with (heading17)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent17 = new Array(5, 7, 500, 
     '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Wild Kratts</td></tr><tr><td valign="top"><img src="images/wildkratts.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">6-11</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Adventure Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #18
// ***********************
var heading18 = new TipObj('heading18');
with (heading18)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent18 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">The Third Eye</td></tr><tr><td valign="top"><!--<img src="images/ertlings.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">3-6</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr>--></table>');
}

// ***********************
// Heading #19
// ***********************
var heading19 = new TipObj('heading19');
with (heading19)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent19 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Harriet the Spy</td></tr><tr><td valign="top"><img src="images/harriet.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">Family</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #20
// ***********************
var heading20 = new TipObj('heading20');
with (heading20)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent20 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Fugget About it</td></tr><tr><td valign="top"><img src="images/fugget.jpg" width="77" height="76" /></td><td class="small"><p><!--<span class="subTitle">Audience:</span><br><span class="small">Family</span></p>--><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #21
// ***********************
var heading21 = new TipObj('heading21');
with (heading21)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent21 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Wibbly Pig</td></tr><tr><td valign="top"><img src="images/wibbly.jpg" width="77" height="76" /></td><td class="small"><p><!--<span class="subTitle">Audience:</span><br><span class="small">3-5</span></p>--><p><span class="subTitle">Genre:</span><br><span class="small">Preschool Comedy</span></p></td></tr></table>');

    
// ***********************
// Heading #22
// ***********************
var heading22 = new TipObj('heading22');
with (heading22)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent22 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">The Invisible Rules Of The Zoë Lama</td></tr><tr><td valign="top"><img src="images/zoe.jpg" width="77" height="76" /></td><td class="small"><p><!--<span class="subTitle">Audience:</span><br><span class="small">Tweens</span></p>--><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #23
// ***********************
var heading23 = new TipObj('heading23');
with (heading23)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent23 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Max And Ruby Season 4</td></tr><tr><td valign="top"><img src="images/maxRuby.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #24
// ***********************
var heading24 = new TipObj('heading24');
with (heading24)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent24 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Max And Ruby Season 4</td></tr><tr><td valign="top"><img src="images/maxRuby.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #25
// ***********************

var heading25 = new TipObj('heading25');
with (heading25)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent25 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Skyland</td></tr><tr><td valign="top"><img src="images/skyland.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">9-12</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Action Adventure</span></p></td></tr></table>');
}

// ***********************
// Heading #26 - Daniel Tiger's
// ***********************

var heading26 = new TipObj('heading26');
with (heading26)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent26 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Daniel Tigers Neighbourhood</td></tr><tr><td valign="top"><img src="images/daniels.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #27 - Maddy and Me
// ***********************

var heading27 = new TipObj('heading27');
with (heading27)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent27 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Maddy and Me</td></tr><tr><td valign="top"><img src="images/maddyandme.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}

// ***********************
// Heading #28 - stand up for kids
// ***********************

var heading28 = new TipObj('heading28');
with (heading28)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent28 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Stand Up 4 Kids</td></tr><tr><td valign="top"><img src="images/standupkids.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">9-11</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #29 - Making Stuff
// ***********************

var heading29 = new TipObj('heading29');
with (heading29)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent29 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Making Stuff</td></tr><tr><td valign="top"><img src="images/makingstuff.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">6-9</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Education</span></p></td></tr></table>');
}

// ***********************
// Heading #30 - Harriet the Spy
// ***********************

var heading30 = new TipObj('heading30');
with (heading30)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent30 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Harriet The Spy</td></tr><tr><td valign="top"><img src="images/harrietthespy.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">Family</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #31 - Way out there
// ***********************

var heading31 = new TipObj('heading31');
with (heading31)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent31 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Way Out There</td></tr><tr><td valign="top"><img src="images/wayoutthere.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">9-11</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Action/Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #32 - pound puppies
// ***********************

var heading32 = new TipObj('heading32');
with (heading32)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent32 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Pound Puppies</td></tr><tr><td valign="top"><img src="images/poundpuppies.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">5-9</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy/Action</span></p></td></tr></table>');
}

// ***********************
// Heading #33 - Ben's City
// ***********************

var heading33 = new TipObj('heading33');
with (heading33)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent33 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Bens City</td></tr><tr><td valign="top"><img src="images/bens-city-77.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">Adult</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Comedy</span></p></td></tr></table>');
}

// ***********************
// Heading #34
// ***********************

var heading34 = new TipObj('heading34');
with (heading34)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent34 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Peep and the Big Wide World Season 5</td></tr><tr><td valign="top"><img src="images/peep.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">4-6</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool Educational</span></p></td></tr></table>');
}

// ***********************
// Heading #35
// ***********************
var heading35 = new TipObj('heading35');
with (heading35)
{
 template = 
  '<table width="320" bgcolor="#101010" cellpadding="1" cellspacing="0" border="0">' +
  '<tr><td><table bgcolor="#ffffff" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 showDelay = 50;
 hideDelay = 100;
 doFades = false;
 tipStick = 0;
 
  // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
  // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
  // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
  // expressions and ignores the mouse position. They are the only compulsory parameters.
  
 tips.headingContent35 = new Array(5, 7, 500, 
    '<table border="0" cellpadding="3" cellspacing="0"><tr><td colspan="2" class="stitle">Max and Ruby Season 5</td></tr><tr><td valign="top"><img src="images/maxRuby.jpg" width="77" height="76" /></td><td class="small"><p><span class="subTitle">Audience:</span><br><span class="small">2-5</span></p><p><span class="subTitle">Genre:</span><br><span class="small">Preschool</span></p></td></tr></table>');
}


// ending }
}


