function loadPhotos(what, id, context) {
	$('#photoContainer').load('/photos/loading.php');
	if (what == 'set') {
		$('#photoContainer').load('/photos/loadSet.php?set=' + id + '&page=' + context);
	}
	else if (what == 'photo') {
		$('#photoContainer').load('/photos/loadPhoto.php?photo=' + id + '&set=' + context);
	}
	else {
		$('#photoContainer').load('/photos/loadSets.php');
	}
}
function slideshow(user, set, beginning) {
	day = new Date();
	id = day.getTime();	window.open('http://www.flickr.com/slideShow/index.gne?user_id='+user+'&set='+set+'&firstid='+beginning, 'Slideshow', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=500');
}