// JavaScript Document

jQuery.noConflict();

jQuery(document).ready(function(){

//Code for example B
jQuery("a.show").click(function(){ jQuery("div.contentToShow").slideDown("slow"); });
jQuery("a.hide").click(function(){ jQuery("div.contentToShow").slideUp("slow"); });

  if (jQuery("div.contentToShow").is("display:block")) {
        jQuery("a.show").hide();
  } 


});