pic0off = new Image();
pic0off.src = "images/top_menu/menu2.jpg";  // 1st master file - picture off
pic0on = new Image();
pic0on.src = "images/top_menu/menu2b.jpg";   // 1st master file - picture on

pic1off = new Image();
pic1off.src = "images/top_menu/menu4.jpg";  // 1st master file - picture off
pic1on = new Image();
pic1on.src = "images/top_menu/menu4b.jpg";   // 1st master file - picture on

pic2off = new Image();
pic2off.src = "images/top_menu/menu6.jpg";  // 1st master file - picture off
pic2on = new Image();
pic2on.src = "images/top_menu/menu6b.jpg";   // 1st master file - picture on

pic3off = new Image();
pic3off.src = "images/top_menu/menu8.jpg";  // 1st master file - picture off
pic3on = new Image();
pic3on.src = "images/top_menu/menu8b.jpg";   // 1st master file - picture on

pic4off = new Image();
pic4off.src = "images/top_menu/menu10.jpg";  // 1st master file - picture off
pic4on = new Image();
pic4on.src = "images/top_menu/menu10b.jpg";   // 1st master file - picture on

pic5off = new Image();
pic5off.src = "images/top_menu/menu12.jpg";  // 1st master file - picture off
pic5on = new Image();
pic5on.src = "images/top_menu/menu12b.jpg";   // 1st master file - picture on

pic6off = new Image();
pic6off.src = "images/top_menu/menu14.jpg";  // 1st master file - picture off
pic6on = new Image();
pic6on.src = "images/top_menu/menu14b.jpg";   // 1st master file - picture on

pic7off = new Image();
pic7off.src = "images/top_menu/menu16.jpg";  // 1st master file - picture off
pic7on = new Image();
pic7on.src = "images/top_menu/menu16b.jpg";   // 1st master file - picture on

pic8off = new Image();
pic8off.src = "images/top_menu/menu18.jpg";  // 1st master file - picture off
pic8on = new Image();
pic8on.src = "images/top_menu/menu18b.jpg";   // 1st master file - picture on

pic9off = new Image();
pic9off.src = "images/top_menu/menu20.jpg";  // 1st master file - picture off
pic9on = new Image();
pic9on.src = "images/top_menu/menu20b.jpg";   // 1st master file - picture on

pic10off = new Image();
pic10off.src = "images/menu/middle_menu2.jpg";  // 1st master file - picture off
pic10on = new Image();
pic10on.src = "images/menu/middle_menu2b.jpg";   // 1st master file - picture on

function changeImage()
{  
	if (document.images)
	{
		for (var i=0; i < changeImage.arguments.length; i+=2)
		{
			document[changeImage.arguments[i]].src = eval(changeImage.arguments[i+1] + ".src");		
		}  
	}

	
}	//end function changeImage

function changeSmallImage()
{
	var input;
	
	input = changeSmallImage.arguments[0];
	
	if(input == 'pic0off')
	{
		document['pic0'].src = eval("pic0off.src");
	}
	else if(input == 'pic0on')
	{
		document['pic0'].src = eval("pic0on.src");
	}
	else if(input == 'pic1off')
	{
		document['pic1'].src = eval("pic1off.src");
	}
	else if(input == 'pic1on')
	{
		document['pic1'].src = eval("pic1on.src");
	}	
	else if(input == 'pic2off')
	{
		document['pic2'].src = eval("pic2off.src");
	}
	else if(input == 'pic2on')
	{
		document['pic2'].src = eval("pic2on.src");
	}	
	else if(input == 'pic3off')
	{
		document['pic3'].src = eval("pic3off.src");
	}
	else if(input == 'pic3on')
	{
		document['pic3'].src = eval("pic3on.src");
	}	
	else if(input == 'pic4off')
	{
		document['pic4'].src = eval("pic4off.src");
	}
	else if(input == 'pic4on')
	{
		document['pic4'].src = eval("pic4on.src");
	}	

	else if(input == 'pic5off')
	{
		document['pic5'].src = eval("pic5off.src");
	}
	else if(input == 'pic5on')
	{
		document['pic5'].src = eval("pic5on.src");
	}	
	else if(input == 'pic6off')
	{
		document['pic6'].src = eval("pic6off.src");
	}
	else if(input == 'pic6on')
	{
		document['pic6'].src = eval("pic6on.src");
	}	
	else if(input == 'pic7off')
	{
		document['pic7'].src = eval("pic7off.src");
	}
	else if(input == 'pic7on')
	{
		document['pic7'].src = eval("pic7on.src");
	}	
	else if(input == 'pic8off')
	{
		document['pic8'].src = eval("pic8off.src");
	}
	else if(input == 'pic8on')
	{
		document['pic8'].src = eval("pic8on.src");
	}	
	else if(input == 'pic9off')
	{
		document['pic9'].src = eval("pic9off.src");
	}
	else if(input == 'pic9on')
	{
		document['pic9'].src = eval("pic9on.src");
	}	
	else if(input == 'pic10off')
	{
		document['pic10'].src = eval("pic10off.src");
	}
	else if(input == 'pic10on')
	{
		document['pic10'].src = eval("pic10on.src");
	}	

}	//end function changeSmallImage