$(document).ready(function() {   
   
   // hide the course types, this will be shown if user has no JS
   $('div#dsa-more').hide();  
   
   // write toggle link into the page
   $('<a id=\"dsa-more-link\" href=\"#"><button class=\"submit more toggle\"><span>more...</span></button></a>').insertBefore('div#dsa-more');
   
   // toggle the course tables
   $('button.toggle').click(function(){	   	   
	   
	   var faded = $("div#dsa-more").is(":hidden");
	   if (faded) {
		 $('div#dsa-more').fadeIn('slow'); 	 
	   } else {
		 $('div#dsa-more').fadeOut('slow');  		
	   }	   	   
	   return false;	   
   }); 
 
   
  
   
   // site intelligence function  
   $('a.more').click(function(){   	 
        return false;
   });
   
   
   
   
   
   
});


