jQuery(function(){
	jQuery('a.product-a').hover(
	function(){
		jQuery(this).find('.popup').show('100');
	},
	function(){
		jQuery(this).find('.popup').hide('100');
	});
});
