// Document Ready
jQuery(function($) {
    // Your code using failsafe $ alias here...
	if($('img .PhotoEffect') != null)
	{
		$('img .PhotoEffect').photoborder();
	}
});    

function ToggleDisplay(elmId)
{
    var answer = document.getElementById(elmId);
    if(answer.style.display == 'block')
    {
        answer.style.display = 'none';
    }
    else
    {
        answer.style.display = 'block';
    }
}