// Swap Image

// Pre-load images
if(document.images) {
		theStoreOn = new Image(); theStoreOn.src = "../_images/home_button_products_on.gif";
		theStoreOff = new Image(); theStoreOff.src = "../_images/home_button_products.gif";
}

function swapImage(imgId, imgSrc) {

	if	(document.images) {
		document.getElementById(imgId).src = imgSrc;
	}
}
