$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	// Display an alert before going to pages with nudity
	$('a.age_restricted').click(function() {
	   var answer = confirm("WARNING: The page you have requested contains nudity. If you are offended by such material or are not at least 18 years of age, please click on the CANCEL button now.");
	   
	   if (!answer) {
	       return false;
	   }
	});
	
});