
<!--
var Dir = "http://www.golfmontana.net/im_lodging/";
var number = Math.round(Math.random()*7);
if(number==0){ number=1;}
var image;
var Dir1="http://www.golfmontana.net/im_lodging/";
switch (number) {
case 1:
	image= Dir1 + "RedLionKalispell.jpg";
	break;
case 2:
	image= Dir1 + "grousemountain.jpg";
	break;
case 3:
	image= Dir1 + "MeadowLakeResort.jpg";
	break;
case 4:
	image= Dir1 + "WhitefishMountain.jpg";
	break;
case 5:
	image= Dir1 + "HiltonGardenInn.jpg";
	break;
case 6:
	image= Dir1 + "LakeShoreRentals.jpg";
	break;
case 7:
	image= Dir1 + "hamptoninn.jpg";
	break;
	
	}
 document.write("<img src= \"" + image+ "\"width=\"569\" height=\"251\" alt=\"Lodging in Montana\">");

	 
//-->
