/**************************************
 * Randompics JS file                 *
 * for Le Gastronome                  *
 * Random Pics function               *
 * 2007 re-devel version:			  *
 * - Loaded by index.html             *
 * - Global availability              *
 * -to use Iframes					  *
 * -for Mozilla & IE                  *
 * ITMXJ 2/12/07                      *
 **************************************/ 
//
//-------------------------------------------------
// this script ramdomizes the main picture on mainpage header
//Make sure that ALL pictures loaded in array have same width!
function getPic()
{ 
	var ix = 0;
	var pixes = ['Aperitifs.jpg', 'Cheese.jpg', 'Jams.jpg', 'Sauces.jpg', 'Seafood.jpg', 'vinaigres_Delouis.jpg'];
	// creates random number
	var ran_no  = Math.floor(Math.random()*5+1);
	//display picture using random index for array
	document.write("<img alt=\"Some of our products\" title=\"Some of our products\" border=\"1\" src=\"images/home/"+ pixes[ran_no] +"\"/>");
}
//-------------------EOF----------------------
