	function writeSideBar()
	{
		
		var dealArray = new Array('usat','fist','desert_sharks','triutah','zenergy');
		
	//*** PRELOAD IMAGES ***
		var preloadImg = new Array()
		for(var p = 0; p < dealArray.length; p++)
		{
			var img = dealArray[p] + ".gif";
			preloadImg[p] = new Image();
			preloadImg[p].src = "http://www.intraining.biz/images/affiliates/" + img;
		}
		
		//*** CREATE OUTPUT ***
		var output = "";
		
		output += "<img src='images/affiliates.gif'><br>";
		output += "<table border='0' cellpadding='0' cellspacing='0' class='tblBorder' width='150' height='100%'>";
		
		for(var i = 0; i < dealArray.length; i++)
		{
			output += "<tr>";
			output += "<td align='center'><a href='affiliates.html'><img src='http://www.intraining.biz/images/affiliates/" + dealArray[i] + ".gif'></a></td>";
			output += "</tr>";
			
			if(i < dealArray.length - 1)
			{
				output += "<tr>";
				output += "<td align='center'><hr class='deals'></td>";
				output += "</tr>";
			}
			
		}
		
		output += "</table>";
		
		document.write(output);
	
	}