/**************************************
 * Randompics JS file                 *
 * for La Cave                        *
 * Random Pics function               *
 * 2007 re-devel version:			  *
 * - Loaded by index.html             *
 * - Global availability              *
 * -to use Iframes					  *
 * -for Mozilla & IE                  *
 * ITMXJ 13/05/07                     *
 **************************************/ 
//
//-------------------------------------------------
// this script ramdomizes the main picture on mainpage header
//Thanks to Josh!
function getPic()
{
	var pix = "1";
	// creates random number
	var ran_no  = Math.round(Math.random()*10);
	// random number allocation ... 
	if (ran_no < 4) pix = 1;
	else if (ran_no < 8) pix = 2;
	else pix = 3;
	//display picture
	document.write("<img width=\"750\" height=\"80\" src=\"header"+ pix +".jpg\"/>");
}
//-------------------EOF----------------------
