// JavaScript Document

var currentFocus;
var photoPath = "http://localhost/lola/uploads";
var staticPath = "http://localhost/lola/static";

function EnlargePhoto(target, file, caption)
{
	currentFocus.style.background = "url("+staticPath+"/photo_grey_bound.png)";
	currentFocus = target;
	target.style.background = "url("+staticPath+"/photo_blue_bound.png)";
	
	document.getElementById("PhotoLargeBox").innerHTML = "<img src=\""+photoPath+"/"+file+".jpg\" />";
	document.getElementById("PhotoCaptionBox").innerHTML = caption;
	//open("#photo-top", "_self");
}

function InitGallery(file, caption)
{
	target = document.getElementById("gall0");
	currentFocus = target;
	target.style.background = "url("+staticPath+"/photo_blue_bound.png)";
	
	document.getElementById("PhotoLargeBox").innerHTML = "<img src=\""+photoPath+"/"+file+".jpg\" />";
	document.getElementById("PhotoCaptionBox").innerHTML = caption;
}

function HideDefaultText(defaultText, target){if (target.value == defaultText) target.value = "";}
function ShowDefaultText(defaultText, target){if (target.value == "") target.value = defaultText;}
