jQuery(document).ready(function() {
	jQuery('#popup_click').live('click', function() {
		jQuery('#popup').fadeIn('slow');
	});
	jQuery('.close_popup').live('click', function() {
		jQuery('#popup').fadeOut('slow');
	});

});
