// JavaScript Document

<!--

// the random number generator.
	var ranNum=Math.floor(Math.random()*3);
	
// this is where the array of success stories pictures are created.	
	var header = new Array();
		
			
		header[0] = "images/flash/platinum.jpg";
		
		header[1] = "images/flash/gold.jpg";
		
		header[2] = "images/flash/gold2.jpg";
		
		//header[3] = "images/flash/Bronze.jpg";
		
		
		
		
		
		
		
		

		
		
		
		
		
		
		
		
	var links = new Array();
	
		
		
		links[0] = "http://www.carolinastar.org";
		
		links[1] = "http://www.carolinastar.org";
		
		links[2] = "http://www.carolinastar.org";
		
		
		
		
		
		
		
		
		
	
		
		
		
		
		
		

	document.write('<a href="'+links[ranNum]+'"><img src="'+header[ranNum]+'" width="235" border="0" alt="Header image"/></a>');

// -->
