$(document).ready(function() {
	//Close the error box for form pages
	$('a#error-link').click(function() {
		$('#error-box').slideUp('slow');
		return false;
	});

// Activate PrettyPhoto Lightbox handle
	$("a[rel^='gallery']").prettyPhoto();
});