jQuery(document).ready(function()
{
   try {
      jQuery("#gr_more_link a").click(function() {
         jQuery("#gr_more").show();
         jQuery("#gr_more_link a").hide();
         jQuery("#gr_more_link_close a").show();
      });
      
      jQuery("#gr_more_link_close a").click(function() {
         jQuery("#gr_more").hide();
         jQuery("#gr_more_link a").show();
         jQuery("#gr_more_link_close a").hide();
      });
   } catch(e) {}
   
   $('head').append('<script type="text/javascript" src="/js/cms/programm.js"></script>');
});
