$(document).ready(function(){
$('a.external').click(function(){

        window.open(this.href);

        return false;

    });
$('a[@rel*=lightbox]').lightBox();
//$(document).pngFix( );

	$("ul.sf-menu")
		.superfish({
			animation : { opacity:"show"}
	});
		$('#text').hide();
	$('#sitemap').hide();

	$('a#toggle-text').click(function() {
	  $('#text').toggle(400);
	  return false;
	});

	$('a#toggle-sitemap').click(function() {
	  $('#sitemap').toggle(400);
	  return false;
	});
});

// JavaScript Document

