// JavaScript Document
var last;

function highlightOn(src)	{
	var obj = document.getElementById(src);
	var tmpString = obj.src;

	if (tmpString.indexOf("product_border_tint.png") > -1) {
		last = "Images/product_border_tint.png";
	}

	if (tmpString.indexOf("product_border_on.gif") == -1) {
		obj.src = "Images/product_border_highlight.gif";
	}	
	
}

function highlightOff(src)	{
	var obj = document.getElementById(src);
	var tmpString = obj.src;

	if (tmpString.indexOf("product_border_highlight.gif") > -1) {
		if ((last == "Images/product_border_tint.png") || (last == "Images/product_border_on.gif"))	{
			obj.src = last;
		} else {
			obj.src = "Images/product_border.gif";
		}
	}
}

function selectProduct(src, srcTotal)	{
	for (i=0;i<=srcTotal;i++)
	{
		if (i != src)	{
			alert(i + " (" + src + " of " + srcTotal + ")");
		}
	} 	
}

function swap_image(new_src)	{
	var obj = document.getElementById("product_image");
	//alert(obj.src);
	obj.src = new_src;
	//alert(obj.src);
	
}
