// JavaScript Document
function showProductPic(path){
	pictureField = document.getElementById('productPic');
	pictureField.src='images/loading.gif';
	pictureField.src=path;
}

