$(document).ready(function() {

	// JQUERY LIGHTBOX
	$(function() {
		$('.jquery-lightbox').lightBox({fixedNavigation:false});
	});	
	
});

function ToggleThisElement(id) {
	if( document.getElementById(id).style.display == "block" ) {
	document.getElementById(id).style.display="none";
	} else {
	document.getElementById(id).style.display="block"; }	
}

function ShowThisElement(id) {
	if( document.getElementById(id).style.height == "auto" ) {
	document.getElementById(id).style.height="1px";
	} else {
	document.getElementById(id).style.height="auto"; }	
}
