﻿$(document).ready(function(){
    
    $("#sectitle").click(function(){
    $("#presshide").show("fast").toggle();
    });
    
    $("#sectitle2").click(function(){
    $("#presshide2").show("fast").toggle();
    });

});