$(document).ready(function(){
	// Drop Down Menu
	$("#topNav")
		.superfish({
			animation : { opacity:"show"}
	});
	$('#gallery-lightbox a').lightBox(); //
	$(document).pngFix();
	

	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); 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 --------------------



