

$(document).ready(function() {
	//$.fn.nyroModal.settings.debug=true;
	//
	
	
	$('#page1').click(function(e) {
	    e.preventDefault();
	    $.nyroModalManual({
	      url: this.href
	      
	    });
	    return false;
	  });
	$('#page2').click(function(e) {
	    e.preventDefault();
	    $.nyroModalManual({
	      url: this.href
	      
	    });
	    return false;
	  });
	 
});

