// JavaScript Document



$(document).ready(function(){
  
  var ttl = $('#privTitle');
  var txt = $('#privText');
  var close = $('#textClose');
  
  if (ttl.length) {
    var txtOpen = function() {
      txt.show();
    }
   
    var txtClose = function() {
      txt.hide();
    }
  
    ttl.click(txtOpen);
    close.click(txtClose); 
  }
  
});