$(document).ready(function(){
	// Drop Down Menu
	$("#topNav, #leftNav")
		.superfish({
			animation : { opacity:"show"}
	});
	$('#gallery-lightbox a').lightBox(); //
	$(document).pngFix();
	
	$('#sitemap-links').hide();

	$('a#toggle-sitemap-links').click(function() {
	  $('#sitemap-links').toggle(400);
	  return false;
	});
	
	// Show and Hide
	jQuery('.text').hide();
	jQuery('a.toggle-text').click(function() {
	  jQuery('.text').toggle(400); 
	  return false;
	});
	
	$('a.external').click(function(){
	window.open(this.href);
	return false;
    });
	

});

//-------------------- JavaScript - Clear/Replace Fields --------------------
 
function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
}


function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

//-------------------- JavaScript - PNGFix --------------------



