var LocArray = new Array('/about/','About.jpg', '/cigar/','cigar.jpg', '/contact/','Contact.jpg', '/cuisine/','Cuisine.jpg', '/food/','Food.jpg', '/gift/index.asp','Gift.jpg', '/gift/details.asp','Gift.jpg', '/gift/1.asp','Presentation.jpg', '/gift/details1.asp','Presentation.jpg', '/news/','News.jpg', '/offers/index.asp','SmartBuys.jpg', '/offers/1.asp','OurPicks.jpg', '/offers/2.asp','OurPicks.jpg', '/offers/3.asp', 'Promotion.jpg' ,'/ware/','Ware.jpg', '/wine/','Wine.jpg');
var URL = String( document.location );

var About = new Image(); About.src = "../interface/swaps/about.jpg";
var Cigar = new Image(); Cigar.src = "../interface/swaps/cigar.jpg";
var Contact = new Image(); Contact.src = "../interface/swaps/Contact.jpg";
var Cuisine = new Image(); Cuisine.src = "../interface/swaps/Cuisine.jpg";
var Food = new Image(); Food.src = "../interface/swaps/Food.jpg";
var Gift = new Image(); Gift.src = "../interface/swaps/Gift.jpg";
var News = new Image(); News.src = "../interface/swaps/News.jpg";
var SmartBuys = new Image(); SmartBuys.src = "../interface/swaps/SmartBuys.jpg";
var OurPicks = new Image(); OurPicks.src = "../interface/swaps/OurPicks.jpg";
var Promotions = new Image(); Promotions.src = "../interface/swaps/Promotions.jpg";
var Ware = new Image(); Ware.src = "../interface/swaps/Ware.jpg";
var Wine = new Image(); Wine.src = "../interface/swaps/Wine.jpg";
var Presentation = new Image(); Presentation.src = "../interface/swaps/Presentation.jpg";

for ( i=0 ; i < LocArray.length ; i+=2 ) {
	if ( URL.indexOf(LocArray[i]) != -1 ) {
		var Normal = new Image(); Normal.src = "../interface/swaps/" + LocArray[i+1];
		break;
	}
}
if ( !Normal ) var Normal = new Image(); Normal.src = "../interface/swaps/About.jpg";


function SwapImage( Thing ) {
	if ( !Thing ) Thing = "Normal";
	if ( document.images.Swapper ) {
		document.images.Swapper.src = eval( Thing + '.src');
	}
}
