var theImages = new Array()
 
	//Random-loading images
	theImages[0] = 'http://stratasia.com/images/headers/Header_business.jpg';
	theImages[1] = 'http://stratasia.com/images/headers/Header_door.jpg';
	theImages[2] = 'http://stratasia.com/images/headers/Header_fuji.jpg';
	theImages[3] = 'http://stratasia.com/images/headers/Header_manga.jpg';
	theImages[4] = 'http://stratasia.com/images/headers/Header_map.jpg';
	theImages[5] = 'http://stratasia.com/images/headers/Header_maple.jpg';
	theImages[6] = 'http://stratasia.com/images/headers/Header_business.jpg';
	theImages[7] = 'http://stratasia.com/images/headers/Header_door.jpg';
	theImages[8] = 'http://stratasia.com/images/headers/Header_fuji.jpg';
	theImages[9] = 'http://stratasia.com/images/headers/Header_manga.jpg';
	theImages[10] = 'http://stratasia.com/images/headers/Header_map.jpg';
	theImages[11] = 'http://stratasia.com/images/headers/Header_maple.jpg';
 
	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 showRandomImage()
	{
    	if(whichImage==0)
		{
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==1){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==2){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==3){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==4){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==5){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
		else if (whichImage==6){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==7){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==8){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==9){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
    	else if (whichImage==10){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
		else if (whichImage==11){
    		document.write('<a href="http://stratasia.com"><img src="'+theImages[whichImage]+'" border=\"0\" width=\"870\" height=\"230\" alt=\"Stratasia Header\"></a>');
    	}
	}
