$(document).ready(function(){
    $(".sections h3").click(function(){
        $(this).next("table").slideToggle("slow")
        .siblings("table:visible").slideUp("slow");
        $(this).toggleClass("active");
        $(this).siblings("h3").removeClass("active");
     });
	 
	 $('#gallery a').lightBox();

});

$(function() {
	$('#jsGallery a').lightBox();
});

function showman(src)
{
  src = src || '/img/null.gif';

  var elementIMG = document.getElementById('photoman');
  if (elementIMG) {
    elementIMG.src = src;
  }

	if (elementIMG && /null\.gif/.test(elementIMG.getAttribute('src'))) {
    elementIMG.className = 'Off';
  } else {
    elementIMG.className = 'On';
  }

	return false;
}

