jQuery(function ($) {
	
	
	$('.sign-up-now').click(function (e) {
		$('#newsletter-registration').modal();
		
		  return false;
	});
	
	$('.more_link').click(function (e) {
									var storyId = $(this).attr('id');
		$('.'+storyId).modal();
		
		  return false;
	});
	
	
	
	

});

	
