var theImages = new Array();var theURL = new Array();var theTitle = new Array();theImages[0] = 'http://www.gigomall.com/uploaded_files/footer/sml-1252120753.gif';theURL[0] = 'http://www.gigomall.com/d/5492/apple-imac-mb420ll-a-24-inch-desktop.htm';theTitle[0] = 'Apple iMac MB420LL/A 24-Inch Desktop';theImages[1] = 'http://www.gigomall.com/uploaded_files/footer/sml-1252118852.gif';theURL[1] = 'http://www.gigomall.com/d/5491/apple-imac-mb418ll-a-24-inch-desktop.htm';theTitle[1] = 'Apple iMac MB418LL/A';var j = 0
		var p = theImages.length;

		var preBuffer = new Array()
		for (i = 0; i < p; i++){
		   preBuffer[i] = new Image()
		   preBuffer[i].src = theImages[i]
		}

		var whichImage = Math.round(Math.random()*(p-1));
		function WriteDG_Image(){
			if(theURL[whichImage]!=""){
				document.write('<a href="'+theURL[whichImage]+'" target="_blank" ><img src="'+theImages[whichImage]+'" style="margin-left: 10px; margin-right:40px;" alt="'+theTitle[whichImage]+'" border="0"></a>');
			}else{
				document.write('<img src="'+theImages[whichImage]+'" style="margin-left: 10px; margin-right:40px;" alt="'+theTitle[whichImage]+'">');
			}
		}