function productImage()
{
	$(".productThmb,.productImageLink,.productThmbInline,.productThmbInlineNonMarign")
		.mouseover(function()
		{
			$(this).css("border-color","#FD0");
		})
		.mouseout(function()
		{
			$(this).css("border-color","#CDCBCE");
		});
		
	$(".productThmbInline,.productThmbInlineNonMarign")
		.click(function()
		{
			$("#bigImage").attr("src", $(this).children("img").attr("src"));
		});
}

$(function()
{
	productImage();
});