jQuery(document).ready(function($) {
	$('a[rel*=az_prod_popupbox]').facebox();

	$('.product-description img').hover(function(){
		$(this).parent().prev().show();
	},
	  function(){
		$(this).parent().prev().hide();
	});
	$('.img-overlay').hover(function(){
		$(this).show();
	},
	  function(){
		$(this).hide();
	});
					   
});
