// png fix
	$(document).ready(function(){
		$(document).pngFix();
	
// toggle for expanded mission statement
        $("#state-extra").hide()
        $("a.extra span.close").hide()
    $("a.extra").toggle(function(){
    $("a.extra span.view").hide()
    $("a.extra span.close").show()
    $("#state-extra").animate({ height: 'show', opacity: 'show' }, 'slow');
    },function(){
    $("a.extra span.close").hide()
    $("a.extra span.view").show()
    $("#state-extra").animate({ height: 'hide', opacity: 'hide' }, 'slow');
    });
	});