function openPhotoDetail( galeryId, photoId )
{
	document.getElementById( 'lightbox' ).style.display = "block";
	new Effect.Appear('lightboxbg', { duration: 0.2, from: 0.0, to: 0.8/*, oncomplete: function() { document.getElementById( 'dialBoxWindow' ).style.display = "block"; }*/ });
	changePhotoDetail( galeryId, photoId );
}

function changePhotoDetail( galeryId, photoId )
{
	var loadPhotoService = new ilikeAjaxService( '/fotogalerie/ajax/' + galeryId + '/' + photoId );
	loadPhotoService.Run();
}

function closePhotoDetail()
{
	document.getElementById( 'lightboxbg' ).style.display = "none";
	document.getElementById( 'lightbox' ).style.display = "none";
}


