// JavaScript Document
  $(document).ready(function(){
    
    $("#po").click(function () {
      $("#poContent").show("slow");
    });

  });
  
  $(document).ready(function(){
    
    $("#poClose").click(function () {
      $("#poContent").hide("slow");
    });    

  });



  $(document).ready(function(){
    
    $("#ad").click(function () {
      $("#adContent").show("slow");
    });

  });
  
  $(document).ready(function(){
    
    $("#adClose").click(function () {
      $("#adContent").hide("slow");
    });    

  });
  
  /*$(document).ready(function(){
    
    $("#fs").click(function () {
    $("#fsContent").show("slow");
    });

  });
  
  $(document).ready(function(){
    
    $("#fsClose").click(function () {
    $("#fsContent").hide("slow");
    });    

  }); */
  