jQuery.fn.pause = function(duration) {
    jQuery(this).animate({ dummy: 1 }, duration);
    return this;
};

jQuery(document).ready(function(){
	jQuery('.boxPopupIn > .procuctListPopup > .cont > .close > a').live('click', function(){
		jQuery(this).parent().parent().parent().hide();
		return false;
	});
	jQuery('.boxPopupIn > .agreementsPopup > .cont > .close > a').live('click', function(){
		jQuery(this).parent().parent().parent().hide();
		return false;
	});
});

