function inputFocus(obj)
{
	obj.style.background="#FFFFFF";
}

function inputBlur(obj)
{
	if(obj.value == "")
	obj.style.background="";
}

function showElement(id)
{
	document.getElementById(id).style.display='block';
}

function hideElement(id)
{
	document.getElementById(id).style.display='none';
}

$(document).ready(function () {
	$("a.lightbox").lightbox();
});
