//imageMouseover.js
if (document.images) 
{
	//HomePage

	home_off=new Image;home_off.src='/images/home_off.gif';
	home_on=new Image;home_on.src='/images/home_on.gif';

	products_off=new Image;products_off.src='/images/products_off.gif';
	products_on=new Image;products_on.src='/images/products_on.gif';

	industries_off=new Image;industries_off.src='/images/industries_off.gif';
	industries_on=new Image;industries_on.src='/images/industries_on.gif';

	sizing_off=new Image;sizing_off.src='/images/sizing_off.gif';
	sizing_on=new Image;sizing_on.src='/images/sizing_on.gif';

	locator_off=new Image;locator_off.src='/images/locator_off.gif';
	locator_on=new Image;locator_on.src='/images/locator_on.gif';

	corporate_off=new Image;corporate_off.src='/images/corporate_off.gif';
	corporate_on=new Image;corporate_on.src='/images/corporate_on.gif';

	news_off=new Image;news_off.src='/images/news_off.gif';
	news_on=new Image;news_on.src='/images/news_on.gif';

	contact_off=new Image;contact_off.src='/images/contact_off.gif';
	contact_on=new Image;contact_on.src='/images/contact_on.gif';


	//InsidePage

	home2_off=new Image;home2_off.src='/images/home2_off.gif';
	home2_on=new Image;home2_on.src='/images/home2_on.gif';

	products2_off=new Image;products2_off.src='/images/products2_off.gif';
	products2_on=new Image;products2_on.src='/images/products2_on.gif';

	industries2_off=new Image;industries2_off.src='/images/industries2_off.gif';
	industries2_on=new Image;industries2_on.src='/images/industries2_on.gif';

	sizing2_off=new Image;sizing2_off.src='/images/sizing2_off.gif';
	sizing2_on=new Image;sizing2_on.src='/images/sizing2_on.gif';

	locator2_off=new Image;locator2_off.src='/images/locator2_off.gif';
	locator2_on=new Image;locator2_on.src='/images/locator2_on.gif';

	corporate2_off=new Image;corporate2_off.src='/images/corporate2_off.gif';
	corporate2_on=new Image;corporate2_on.src='/images/corporate2_on.gif';

	news2_off=new Image;news2_off.src='/images/news2_off.gif';
	news2_on=new Image;news2_on.src='/images/news2_on.gif';

	contact2_off=new Image;contact2_off.src='/images/contact2_off.gif';
	contact2_on=new Image;contact2_on.src='/images/contact2_on.gif';
	
}
function imageSwap(location,imageName){
if(document.images)
document.images[location].src=eval(imageName+'.src');
}