jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);

}; 
function togglePopup(popup_id) {
	$("#"+popup_id).fadeToggle({opacity:'toggle'},'slow');
}