function productImage()
{
	$("button.imgButton")
		.mouseover(function()
		{
			var id = $(this).children("img").attr("id");
			if(id == "bt_into_cart")
			{
				$(this).children("img").attr("src","/img/bt_into_cart_1.gif");
			}
		})
		.mouseout(function()
		{
			var id = $(this).children("img").attr("id");
			if(id == "bt_into_cart")
			{
				$(this).children("img").attr("src","/img/bt_into_cart_0.gif");
			}
		});
		
	$(".productThmb,.productImageLink")
		.mouseover(function()
		{
			$(this).css("border-color","#FD0");
		})
		.mouseout(function()
		{
			$(this).css("border-color","#CDCBCE");
		})
		.click(function()
		{
			$(".productBigImage").attr("src", $(this).children("img").attr("src"));
		});
}

$(function()
{
	productImage();
	$(".priceSearcFormValidate").validate();
	
	$("input")
		.keydown(function(event)
		{
			if(event.keyCode == 13)
			{
				$(this).parent("form").children("button").click();
			}
		});
});