conBrowser=1;
  switch1on  = new Image();  switch1on.src  = 'images/nav2_home2.jpg';
  switch1off = new Image();  switch1off.src = 'images/nav2_home.jpg';
  switch2on  = new Image();  switch2on.src  = 'images/nav2_story2.jpg';
  switch2off = new Image();  switch2off.src = 'images/nav2_story.jpg';
  switch3on  = new Image();  switch3on.src  = 'images/nav2_wines2.jpg';
  switch3off = new Image();  switch3off.src = 'images/nav2_wines.jpg';
  switch4on  = new Image();  switch4on.src  = 'images/nav2_pricelist2.jpg';
  switch4off = new Image();  switch4off.src = 'images/nav2_pricelist.jpg';
  switch5on  = new Image();  switch5on.src  = 'images/nav2_club2.jpg';
  switch5off = new Image();  switch5off.src = 'images/nav2_club.jpg';
  switch6on  = new Image();  switch6on.src  = 'images/nav2_order2.jpg';
  switch6off = new Image();  switch6off.src = 'images/nav2_order.jpg';
  switch7on  = new Image();  switch7on.src  = 'images/nav2_newsletter2.jpg';
  switch7off = new Image();  switch7off.src = 'images/nav2_newsletter.jpg';
  switch8on  = new Image();  switch8on.src  = 'images/nav2_events2.jpg';
  switch8off = new Image();  switch8off.src = 'images/nav2_events.jpg';
  switch9on  = new Image();  switch9on.src  = 'images/nav2_contact2.jpg';
  switch9off = new Image();  switch9off.src = 'images/nav2_contact.jpg';


function HighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "on");
      		document [musswitch].src = switchnavn.src;
    		}
  	}

function UndoHighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "off");
		document [musswitch].src = switchnavn.src;
		}
	}


  imageFilename = new Array("ranImg1.jpg","ranImg2.jpg","ranImg3.jpg","ranImg4.jpg","ranImg5.jpg","ranImg6.jpg","ranImg7.jpg","ranImg8.jpg","ranImg9.jpg","ranImg10.jpg","ranImg11.jpg","ranImg12.jpg","ranImg13.jpg","ranImg14.jpg","ranImg15.jpg","ranImg16.jpg","ranImg17.jpg","ranImg18.jpg","ranImg19.jpg");

   function randomNumber() {
    selection = Math.floor(Math.random() * imageFilename.length);
     if ( selection == imageFilename.length ) selection = 0;
       return selection;
     }
 function printImg() {
  document.write('<img src="images/ranHdrImgs/'+imageFilename[randomNumber()]+'"width="302" height="137" alt="">');
 }