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

	$('a#toggle-sitemap-links').click(function() {
	  $('#sitemap-links').toggle(400);
	  return false;
	});
	
	$('a.external').click(function(){
        window.open(this.href);
        return false;
    });

});

