/** kdr.album.js

	Handles gallery page in showroom, showing new files, 
	allowing scrolling, and popping up thickboxes.

	@author Jason Anderson
**/

function loadLocation() {
	var loc_id = $("#location").val();

	$.get("gallery.php", {go:"album.album.ajaxDisplayLocationPhotos", location:loc_id}, function(html) {
			$("#gallery_html").html(html);
			document.getElementById('scrollbox1').scrollTop = 0;
			tb_init('a.thickbox, area.thickbox, input.thickbox');
		});
	$.get("gallery.php", {go:"album.album.ajaxGetAlbumInfo", location:loc_id}, function(html) {
			$("#extra_info").html(html);
			tb_init('a.thickbox, area.thickbox, input.thickbox');
		});
}

function showPhoto(url) {
	alert(url);
}