$(document).ready(function () {
	$("a[rel^='prettyPhoto'], a[rel^='facebox']").prettyPhoto();
	$('a.getbigpic').click(function() {
		var id = $(this).parent().find('span').text();
		$.getJSON("/getpics.php", { id: id }, function(r){
			$.prettyPhoto.open(r.pics,'',r.names);
		});
		return false;
	});
});

