$(document).ready( function() {
	//limit this to boutique and home pages only
	$('#featPlatformSecondary .product, #featPlatformPrimaryHome .product')
		.live('mouseenter', function() {
			$(this).addClass('hover').find('.productLinks').show().animate( {'opacity': 1}, {queue: false});
		})
		.live('mouseleave', function() {
			$(this).removeClass('hover').find('.productLinks').hide().animate( {'opacity': 0}, {queue: false});
		});
});
