jQuery(function() {
	jQuery('div.small').mouseenter(function() {
		jQuery(this).parent('div.product-cell').addClass('hover');
	});
	
	jQuery('div.expand').mouseleave(function() {
		jQuery(this).parent('div.product-cell').removeClass('hover');
	});
});
