// JavaScript Document

$(document).ready(function(){
    $("#hideST").hide();
	 $("#openST").click(function () {
      $("#hideST").show("slow")
      return false;
    });
	  $("#hideST").click(function () {
      $("#hideST").hide("slow")
      return false;
    });

  });

$(document).ready(function(){
    $("#hideSTF").hide();
	 $("#openSTF").click(function () {
      $("#hideSTF").show("slow")
      return false;
    });
	  $("#hideSTF").click(function () {
      $("#hideSTF").hide("slow")
      return false;
    });

  });


