
jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    return this;
}

$(document).ready(function () {
							
	$('#supersize a').removeAttr('onclick').removeAttr('href');

	$("a#next").center();

	// Accordion navigation
	$("#nav").accordion({
		active: false,
		alwaysOpen: false,
        autoHeight: false,
        collapsible: true,
    });
	
	// Toggle Map Navigation
    $(".togglenav a").click(function () {
    	$("#nav").slideToggle();
		$(this).toggleClass("on");
    });
	
	// Toggle Secondary Level
	$(".toggle ul").hide();
	$(".toggle ul.open").show();


	$(".toggle a").click(function(){
		$(this).next("ul").slideToggle();
		$(this).toggleClass("active");
	});


});
