<!-- Hide from old browsers
function switchImg(from,to)
	{
	document[from].src = eval(to + ".src");
	}
count = 1;
ImageArray = new Array();
ImageArray[1]=new Image();ImageArray[1].src='yellow-jacket-01.jpg';
ImageArray[2]=new Image();ImageArray[2].src='yellow-jacket-02.jpg';
function loadImg(from,to){
		//swaps an image src with a remote url (used to show product images)

    	document[from].src = to;
}
function Next(){
if (count < ImageArray.length - 1){
count = count + 1;
document.swapImage.src = ImageArray[count].src;

}
else {
count = 1;
document.swapImage.src =  ImageArray[count].src;
}

}
function Back(){
if (count > 1){
count = count - 1;
document.swapImage.src =  ImageArray[count].src;

}
else {
count = 2;
document.swapImage.src =  ImageArray[count].src;
}

}
// -->
