// Image swap code

	one=null;
	two=null;
	three=null;
	four=null;
	five=null;
	six=null;
	seven=null;
	eight=null;
	nine=null;
	ten=null;
	eleven=null;
	twelve=null;
	thirteen=null;
	fourteen=null;
	fifteen=null;
	sixteen=null;
	seventeen=null;
	
	function off_image(img) { }
	function on_image(loc, img) {  }

menuImages = new Array(40)

menuImages[39] = new Image(100,20)
menuImages[39].src = "http://www.remrock.com/remrock/graphics/remrockcom.gif"
menuImages[40] = new Image(100,20)
menuImages[40].src = "http://www.remrock.com/remrock/graphics/remrockcom1.gif"

for(i = 0; i <= 21; i++)
	{
	menuImages[i] = new Image(20,20)
	menuImages[i].src = "http://www.remrock.com/remrock/graphics/navbar/button"+i+".gif"
	}

function on_image(loc, img)
	{ loc.src=menuImages[img].src; }

function off_image(loc, img) 
	{ loc.src=menuImages[img].src; }

// End of image swap code

// Gallery image open function. Copyright Craig Lawson 2001. All rights reserved

function openPic(imgFile,imgWidth,imgHeight) {
		 var theLink = 'http://www.remrock.com/remrock/gallery_picture.php?jpgFile='
		 	 + imgFile + '&picWidth=' + imgWidth + '&picHeight=' + imgHeight;
		 var winWidth = imgWidth + 30;
		 if (winWidth < 400) { winWidth = 400; }
		 var winHeight = imgHeight + 120;
		 var winSize = "width=" + winWidth + ",height=" + winHeight;
		 window.open(theLink,'',winSize);
		 }

// End of gallery image open function

// Guitar Tab .pfd open function. Copyright Craig Lawson 2001. All rights reserved

function openTab(tabFile) {
		 var tabWindow = window.open(tabFile,'GuitarTab','width=700,height=560,resizable');
		 tabWindow.focus();
		 }
		 
// End of Guitar Tab .pfd open function 
