 


/* Show/Hide formatting info
----------------------*/
function toggle(element) {
	if (document.getElementById(element).style.display == "none") {
		document.getElementById(element).style.display = "";
	} else {
		document.getElementById(element).style.display = "none";
	}
}



$(document).ready(function(){
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#Navigation').hide();
  
 // shows and hides and toggles the slickbox on click  
  $('#Toggle').click(function() {
    $('#Navigation').slideToggle(200);
    return false;
  });
 

});




TopUp.addPresets({
    "#gallery a": {
      title: "Gallery {alt} ({current} of {total})",
      readAltText: 1,
          layout: "quicklook",
    	  effect: 'appear',
    	  width: 650,
          shaded: 1,
          resizable: 1
      
    }
    
  });
  
  
 