jQuery(document).ready(function(){
   jQuery('.fotzc_link').css({'color' : '#2D5699', 'text-decoration' : 'underline'});
   jQuery('.fotzc_hidden').css({'display': 'none'});
   jQuery('.fotzc_hidden').css("color", "#000000");
   jQuery('.fotzc_link').click(function () {
      jQuery(this).children('.fotzc_hidden').slideToggle("normal");
      jQuery(this).children('.fotzc_hidden').css("text-decoration", "none");
   });
});

