function changeAlbum(newAlbum,holder){
	$("#" + holder).empty();
	$("#" + holder).append('<div id="loading" style="position: relative; width: 100%; top: 20%; top: 40%; text-align: center;"><img src="/images/loading.gif" style="background: #fff; padding: 5px;"/></div>');
	$.ajax({
		type: "POST",
		url: "/member/ajax/shop.loadAlbumThumbnails.php",
		data: "albumID=" + newAlbum,
		success: function(html){
			if(html !='FAILED'){
				$("#" + holder).append(html);
				$("#loading" ).remove();
			}else{
				alert('Error Loading Album');
			}
		}
	});
}
function choosePhoto(photo){
	document.forms['selectPhoto'].elements['newPhoto'].value = true;
	document.forms['selectPhoto'].elements['photoID'].value = photo;
	document.forms['selectPhoto'].submit();
}
