﻿function SelectPhoto( id )
{
	HoldsworthKlimowski.WwwV20.Services.Gallery.GetPhotoDetail( id, SetPhoto, PhotoFailure );
}

function SetPhoto(photoDetail) 
{
	$("img#galleryImage").attr("src", photoDetail.ImageSrc);
	$("#galleryHeadline").html(photoDetail.Title);
	$("#galleryDescription").html(photoDetail.Description);
}


function PhotoFailure( error )
{
	alert( error.Message );	
}