// mmm...rabbits<!--var numGraphics = 3;   // <=== Adjust per imagesvar theGraphics = null;var theBack = null;var subscribe = null;function getRandomNumber(n) {        //Returns a pseudorandom number between 1 and n        today = new Date();        var bigNum = today.getSeconds() * today.getTime() * Math.sqrt(today.getMinutes());        var randNum = (bigNum % n) + 1;        return Math.floor(randNum);}function initArray(n) {        this.length = n;        for(var i = 1; i <= n; i++) {                this[i] = "";                }        return this;}function initGraphics() {        //Name Graphics: foonn where nn is a whole number        //in the format "1" to "99"        theGraphics = new initArray(numGraphics);        for(i = 1; i <= numGraphics; i++) {                if (i < 3) {                        theGraphics[i] = "Logo" + i + ".gif"                } else {                        theGraphics[i] = "Logo" + i + ".gif"                }        }}function getRandomGraphic() {        var theIndex = getRandomNumber(numGraphics);        return theGraphics[theIndex];}function getGraphic() {        var theGraphicName = getRandomGraphic();        theGraphic = theGraphicName        return theGraphic}function loadBack() {        if (theGraphic == "Logo1.gif")			{			var theBack = "PatGreen.gif";			}		else if (theGraphic == "Logo2.gif")			{			var theBack = "PatBlue.gif";			}		else if (theGraphic == "Logo3.gif")			{			var theBack = "PatRed.gif";			}        return theBack;}function loadSubscribe() {        if (theGraphic == "Logo1.gif")			{			var theSubscribe = "subscribeGreen.gif";			}		else if (theGraphic == "Logo2.gif")			{			var theSubscribe = "subscribeBlue.gif";			}		else if (theGraphic == "Logo3.gif")			{			var theSubscribe = "subscribeRed.gif";			}		  return theSubscribe;}function loadInput() {        if (theGraphic == "Logo1.gif")			{			var inputClass = "border: 1px solid #88ac3b";			}		else if (theGraphic == "Logo2.gif")			{			var inputClass = "border: 1px solid #37a3b3";			}		else if (theGraphic == "Logo3.gif")			{			var inputClass = "border: 1px solid #d46d51";			}		  return inputClass;}function loadGraphic() {        theGraphic = getGraphic();        theBack = loadBack();		  			var theTag = '<td background="2006look/images/'+ theBack + '" id="header" align="center"><table cellpadding="0" cellspacing="0" border="0" width="615"><tr><td align="right"><img src="2006look/images/'+ theGraphic + '" alt="Shopmalls.com. It&#8217;s your life. Give it style" width="484" height="39" border="0" id="logo">'        document.write(theTag);}function loadSub() {			theSubscribe = loadSubscribe();						var theBag = '<td><p><br><input type="image" src="2006look/images/'+ theSubscribe + '" name="subscribe" value="Subscribe Now!"></p></td>'			document.write(theBag);}function loadClass() {			inputClass = loadInput();						var newStyle = '.ben {' + inputClass + ';}'			document.write(inputClass);/*function loadClass() {			inputClass = loadInput();						var benSucks = 'the class is' + inputClass			document.write(benSucks);						 document.getElementById(firstName).class = inputClass; 			 document.getElementById(lastName).class = inputClass; 			 document.getElementById(email).class = inputClass; */}/*function unhide(layerid) { document.getElementById(layerid).style.display = "inline"; }function rehide(layerid) { document.getElementById(layerid).style.display = "none";}*/initGraphics();//-->
