
$(function() 
{
	$('.js_product_hover').mouseover(function()
	{
		$(this).addClass('product_hover');
	});
	
	$('.js_product_hover').mouseout(function()
	{
		$('.js_product_hover').removeClass('product_hover');
	});	
});