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 == "index") {
		theQuoteImage[0] = 'images/index/headerImg.jpg'
		theQuoteImage[1] = 'images/index/headerImg2.jpg'
		theQuoteImage[2] = 'images/index/headerImg3.jpg'
		theQuoteImage[3] = 'images/index/headerImg4.jpg'
		theQuoteImage[4] = 'images/index/headerImg5.jpg'

		theQuoteLink[0] = 'http://www.powerbroking2u.com/'
		theQuoteLink[1] = '#'
		theQuoteLink[2] = '#'
		theQuoteLink[3] = 'http://www.maybank-ib.com/pdf/free_umrah_flyerv5.pdf'
		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] +'" target="_blank"><img src="'+theQuoteImage[quoteWhichImage]+'" border="0"></a>');
}

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>');
}

