function catcontent()
      {
      //alert(typeof($('#shortcat'));
      $j = jQuery.noConflict();
      if (typeof($j('#shortcat'))!=undefined && typeof($j('#fullcat'))!=undefined) 
      	{
      	$j('#shortcat').show();
      	$j('#fullcat').hide();
        $j('#shortcat').click(function(){$j('#shortcat').hide();$j('#fullcat').show();});
        $j('#fullcat').click(function(){$j('#fullcat').hide();$j('#shortcat').show();});
        }
      }
  

        if (typeof(window.onload)!= "function") {
                window.onload = catcontent;
        }
        else {
        		var oldonload2 = window.onload;
                window.onload = function() {
                        catcontent();
                        oldonload2();                        
                }
        }

