jQuery(document).ready(function() {
    jQuery('.pngfix').ifixpng();
    // remove the last list trick
    jQuery('#menu li a:last').css('background-image','none');
    jQuery('#footer li:last').css('border-right','none');
    jQuery('.imagearchive li:last').css('border-bottom','none');
    jQuery('.imagearchive li:last').css('margin-bottom','0px');

    keepchecking=true;
    jQuery('#pathway a').each(function(el){
        if(keepchecking && jQuery(this).text()!=''){
            jQuery(this).text('News Home');
            keepchecking=false;
        }
    });

    jQuery('#pathway').css('display','block');
});

function showall(){
    jQuery(".invisi").css('display','block');
    jQuery("#showallbutton").css('display','none');
}