//javascript files for productcategory page

// set the border of product name link

function setBG(source)
{
	source.parentNode.childNodes[1].style.backgroundColor = "#3d3d3d";
	source.parentNode.childNodes[1].style.color = "orange";
}

function resetBG(source)
{
	source.parentNode.childNodes[1].style.backgroundColor = "";
	source.parentNode.childNodes[1].style.color = "";
}

function setBorder(image)
{
	image.border=2;
}

function resetBorder(image)
{
	image.border=0;
}


