$(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
	$('.text').hide();
	$('a.toggle-text').click(function() {
	  $('.text').toggle(400); 
	  return false;
	});
	
	$('a.external').click(function(){
	window.open(this.href);
	return false;
    });
   
   $('.rss-items').newsScroll({  
         speed: 2000,  
         delay: 5000  
     });
	
});

//-------------------- 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 --------------------



