// JavaScript Document
<!--
   function clubimages()
    {
      var clubimage = new Array();
      clubimage[0] = 'images/club1_name.jpg';
      clubimage[1] = 'images/club2_name.jpg';
      clubimage[2] = 'images/club3.jpg';
	  clubimage[3] = 'images/club4.jpg';
      
      var clubid = Math.floor(Math.random()*clubimage.length);
      document.getElementById('clubfrontpageimg').src = clubimage[clubid];
	document.getElementById('clubfrontpageimg').height = 506;
	document.getElementById('clubfrontpageimg').width = 496;
    }
    //-->