$(document).ready(function() {
	$('.double-item-email').click(function() {
		return false;
	});	
	$('.the-product-email').click(function() {
		return false;
	});

			
	$('.postbox_outer').hover(function() {
		$(this).find('.postbox_info').fadeIn('fast');
	},function() {
		$(this).find('.postbox_info').fadeOut('fast');
	});
	
	$('.product_postbox_outer').hover(function() {
		$(this).find('.product_postbox_info').fadeIn('fast');
	},function() {
		$(this).find('.product_postbox_info').fadeOut('fast');
	});
	
	$('.search_postbox_outer').hover(function() {
		$(this).find('.search_postbox_info').fadeIn('fast');
	},function() {
		$(this).find('.search_postbox_info').fadeOut('fast');
	});
});