<!--

// reloads the window if Nav4 resized
function MM_reloadPage(init) { 
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

// Refresh page function
function refresh()
{
    window.location.reload( true );
}

// date variables
var day = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var month = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
var date_now = new Date

// random image variables
var images = new Array();
var title = new Array();
var www = new Array();
var description = new Array();
var flash = new Array();
        
images[0] = "../images/v2/neth-promo.gif";
images[1] = "../images/v2/tinpo-promo.gif";
images[2] = "../images/v2/tribes-promo.gif";
images[3] = "../images/v2/chrislee-promo.gif";
images[4] = "../images/v2/madl-promo.gif";

title[0] = "../images/v2/neth-title.gif";
title[1] = "../images/v2/tinpo-title.gif";
title[2] = "../images/v2/tribes-title.gif";
title[3] = "../images/v2/chrislee-title.gif";
title[4] = "../images/v2/madl-title.gif";

www[0] = "../toys/section.asp?subsection=Neth&sub=Neth";
www[1] = "../toys/section.asp?subsection=TinPo&sub=TinPo";
www[2] = "../toys/section.asp?subsection=Monsterism&sub=Monsterism";
www[3] = "../toys/section.asp?subsection=ChrisLee&sub=ChrisLee";
www[4] = "../toys/section.asp?subsection=MadL&sub=MadL";

description[0] = "<br>Neth Creatures are simply beautiful.<br><br>Not much more you can say really. Each Neth Creature comes with removable head, arms and body, which you can interchange with the other Creatures in your collection. All centered round one metal ring, which you screw your piece into.<br><br>Attention to detail is second to none, and the quality is fantastic, even the packaging is lovely. Have we sold them to you yet?";
description[1] = "<br>The tiny TinPo figures are one of my favourite releases from 2005. Each little TinPo comes with a TinPet capsule. If you collect all of the TinPo fellas, you can build your own pets.<br><br>Stock is very low on all designs though, so if you are ummmming and arrrrring about getting a few, I wouldn't! :)";
description[2] = "<br>I personally always get very excited when new releases from Pete Fowler appear on the scene. Fresh from his animations in the new Kia adverts on UK television, Pete has given us - Tribes of Monsterism.<br><br>These 8 inch beasts, part of the Molvox Tribe, look and feel wonderful. Even with flocked hats, tops, and pants!";
description[3] = "<br>Chris Lee is certainly one to watch in 2006. His work is amazing, and that's reflected in these stunning prints.<br><br>Produced in editions of 10 or 25 (depending on the design), Chris' work is certainly one you'll be proud to be hanging on your wall!<br><br>We have 10 different designs to choose from, but only a handful of each.";
description[4] = "<br>The latest series to hit the shelves, is the Artist Series - Phase 1.<br><br>Featuring 6 artists, Tado, Mimic, Chris Lee, Mad, Sket and Frank Kozik. These beauties stand at 5.5 inches high are are limited to just 400 pieces each.<br><br>Preorder yours now, they are going fast!";


var number_of_images = images.length;

// Random number generator
function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}

// Pick a random image from the list
var choice = pickRandom(number_of_images);
// end hiding -->