

if (document.images) {
  image1on = new Image();
  image1on.src = "img/top_home_on.jpg";
  image2on = new Image();
  image2on.src = "img/top_help_on.jpg";
  image3on = new Image();
  image3on.src = "img/top_client_on.jpg";
  image4on = new Image();
  image4on.src = "img/top_products_on.jpg";
  image5on = new Image();
  image5on.src = "img/top_services_on.jpg";
  image6on = new Image();
  image6on.src = "img/top_about_on.jpg";
  image7on = new Image();
  image7on.src = "img/top_contact_on.jpg";
  
  image1off = new Image();
  image1off.src = "img/top_home_off.jpg";
  image2off = new Image();
  image2off.src = "img/top_help_off.jpg";
  image3off = new Image();
  image3off.src = "img/top_client_off.jpg";
  image4off = new Image();
  image4off.src = "img/top_products_off.jpg";
  image5off = new Image();
  image5off.src = "img/top_services_off.jpg";
  image6off = new Image();
  image6off.src = "img/top_about_off.jpg";
  image7off = new Image();
  image7off.src = "img/top_contact_off.jpg";
}
function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}






// menu_items.js file
// comments block here

var MENU_ITEMS =[
	["Plate Rolling", "plate_rolling.shtml",
		["Cylinders", "plate_rolling.shtml"],
		["Rings", "plate_rolling.shtml"],
		["Segments", "plate_rolling.shtml"]
	],
	["Press Brake Forming", "press_brake_forming.shtml",
		["Cones", "press_brake_forming.shtml"],
		["Conical Segments", "press_brake_forming.shtml"],
		["Channels", "press_brake_forming.shtml"],
		["Angles", "press_brake_forming.shtml"],
		["Special Shapes", "press_brake_forming.shtml"]
	],
	["Pressure Vessels", "pressure_vessels.shtml",
		["Heat Exchanges", "pressure_vessels.shtml"],
		["Vessels", "pressure_vessels.shtml"],
		["Partial Data Shells", "pressure_vessels.shtml"],
		["Boiler Drums", "pressure_vessels.shtml"],
		["Rolled Shells", "pressure_vessels.shtml"]
		["Mud Drums", "pressure_vessels.shtml"],
	],
	["Molten Metal Vessels", "molten_metal.shtml",
		["Lead Pans", "molten_metal.shtml"],
		["Galvanizing Kettles", "molten_metal.shtml"],
		["Salt Pots", "molten_metal.shtml"],
		["Slag Pots", "molten_metal.shtml"],
		["Spelter Pots", "molten_metal.shtml"],
		["Pickling Tanks", "molten_metal.shtml"]
	],
	["Welding/Heat Treating", "welding_heat_treating.shtml",
		["TIG/MIG/Sub Arc", "welding_heat_treating.shtml"],
		["GTAW/FCAW/GMAW", "welding_heat_treating.shtml"],
		["ASME Compliant", "welding_heat_treating.shtml"]
	],
	["Custom Fabricating", "custom_fabricating.shtml",
		["Mill Products", "machining_services.shtml"],
		["Heat Treat Fixtures", "machining_services.shtml"],
		["Job Shop", "custom_fabricating.shtml"],
		["Prototyping", "custom_fabricating.shtml"]
	],
	["Engineering Services", "engineering_services.shtml",
		["Metallurgical Consulting", "engineering_services.shtml"],
		["Design/Manufacture", "engineering_services.shtml"],
		["Quality Consulting", "engineering_services.shtml"],
		["Process Consulting", "engineering_services.shtml"]
	],
	["Custom Machining", "machining_services.shtml",
		["Vertical Turning Lathe", "machining_services.shtml"],
		["Vertical Boring Mills", "machining_services.shtml"],
		["Planar Mill", "machining_services.shtml"]
	],
	["Materials Processed", "materials_processed.shtml",
		["Carbon &amp; PVQ Plate", "materials_processed.shtml"],
		["High Carbon", "materials_processed.shtml"],
		["Chrome Molly", "materials_processed.shtml"],
		["Aluminum", "materials_processed.shtml"],
		["Copper", "materials_processed.shtml"],
		["Manganese Steels", "materials_processed.shtml"],
		["Cobalt Alloys", "materials_processed.shtml"],
		["Wear-Resistant Alloys", "materials_processed.shtml"]
	]

];

/* --- geometry and timing of the menu --- */
var MENU_POS = new Array();

	// item sizes for different levels of menu
	MENU_POS['height']     = [22, 18];
	MENU_POS['width']      = [163, 148];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	MENU_POS['block_top']  = [170, 0];
	MENU_POS['block_left'] = [10, 165];

	// offsets between items of the same level
	MENU_POS['top']        = [21, 21];
	MENU_POS['left']       = [0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS['hide_delay'] = [350, 350];


/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/

var MENU_STYLES = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES['onmouseout'] = [
		'background', ['transparent', 'transparent'],
		'color', ['#000000', '#ffffff'],
		'filter', ['alpha(opacity=100)', 'alpha(opacity=100)'],
	];

	// state when item has mouse over it
	MENU_STYLES['onmouseover'] = [
		'background', ['transparent', 'transparent'],
		'color', ['#000000', '#ffffff'],
		'cursor', ['hand', 'hand'],
		'filter', ['alpha(opacity=100)', 'alpha(opacity=70)'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES['onmousedown'] = [
		'background', ['transparent', 'transparent'],
		'color', ['#000000', '#000000'],
		'filter', ['alpha(opacity=100)', 'alpha(opacity=100)'],
	];
	


new menu (MENU_ITEMS, MENU_POS, MENU_STYLES);
window.focus();



// Script Source: CodeLifter.com
// Copyright 2004
// Do not remove this notice.

// SETUPS:
// ===============================

// Set the horizontal and vertical position for the popup

PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 420;
defaultHeight = 350;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;
function popImage(imageURL,imageTitle){
if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');writeln('<sc'+'ript>');
writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(100,100);');
writeln('width=100-(document.body.clientWidth-document.images[0].width);');
writeln('height=100-(document.body.clientHeight-document.images[0].height);');
writeln('window.resizeTo(width,height);}');writeln('if (isNN){');       
writeln('window.innerWidth=document.images["George"].width;');writeln('window.innerHeight=document.images["George"].height;}}');
writeln('function doTitle(){document.title="'+imageTitle+'";}');writeln('</sc'+'ript>');
if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
writeln('<img name="George" src='+imageURL+' style="display:block"></body></html>');
close();		
}}


function clearform(which){
if (which.value=="Comments")
which.value=''
}

function clearform1(which){
if (which.value=="search term(s)")
which.value=''
}


