function showQuote(pagename){
	var theQuoteImage = new Array() // the images
	var theQuoteLink = new Array() // the links 
	
	// To add more image files, continue with the
	if (pagename == "header") {
		theQuoteImage[0] = 'images/banner.jpg'
		theQuoteImage[1] = 'images/banner2.jpg'
		theQuoteImage[2] = 'images/banner3.jpg'
		theQuoteImage[3] = 'images/banner4.jpg'
		theQuoteImage[4] = 'images/banner5.jpg'
		
		theQuoteLink[0] = '#'
		theQuoteLink[1] = '#'
		theQuoteLink[2] = '#'
		theQuoteLink[3] = '#'
		theQuoteLink[4] = '#'
	}
	
	// do not edit anything below this line
	
	// To add more image files, continue with the
	if (pagename == "header2") {
		theQuoteImage[0] = '../images/banner.jpg'
		theQuoteImage[1] = '../images/banner2.jpg'
		theQuoteImage[2] = '../images/banner3.jpg'
		theQuoteImage[3] = '../images/banner4.jpg'
		theQuoteImage[4] = '../images/banner5.jpg'
		
		theQuoteLink[0] = '#'
		theQuoteLink[1] = '#'
		theQuoteLink[2] = '#'
		theQuoteLink[3] = '#'
		theQuoteLink[4] = '#'
	}
	
	// do not edit anything below this line
	
	var p = theQuoteImage.length;
	/*
	var quotePreBuffer = new Array()	
	for (i = 0; i < p; i++){
	   quotePreBuffer[i] = new Image()
	   quotePreBuffer[i].src = theQuoteImage[i]
	}
	*/
	var quoteWhichImage = Math.round(Math.random()*(p-1));

	//document.write('<a href="'+ theQuoteLink[quoteWhichImage] +'"><img src="'+theQuoteImage[quoteWhichImage]+'" border="0"></a>');
	document.write('<img src="'+theQuoteImage[quoteWhichImage]+'" border="0">');
}

function showProduct_a(pagename){
	var theImageProduct_a = new Array() // the images
	var theLinkProduct_a = new Array() // the links 
	var whichImageProduct_c = Math.round(Math.random()*(p-1));

	document.write('<a href="'+ theLinkProduct_c[whichImageProduct_c] +'"><img src="'+theImageProduct_c[whichImageProduct_c]+'" border="0"></a>');
}

