<!--
//This is the area in which you need to update your text and image groups for the random display function.  note that single primes are used to delimit these strings. If you need to put one in the string, escape it with \

textBlock=new Array();
textBlock[0]='';
textBlock[1]='';
textBlock[2]='';

imageTag=new Array();
imageTag[0]='<img src="/images/ani_homepage_GCW.jpg" width="876" height="266" border="0" usemap="#Ani_GCW">';
imageTag[1]='<img src="/images/ani_homepage_CIE.jpg" width="876" height="266" border="0" usemap="#Ani_CIE">';
imageTag[2]='<img src="/images/ani_homepage_WCW.jpg" width="876" height="266" border="0" usemap="#Ani_WCW">';

whichOne=Math.floor(Math.random()*Math.min(textBlock.length,imageTag.length));

//-->

