/* Toggle Show and Hide content */

jQuery(function() {   
   // Content toggle
   $('.toggle-content dd:not(:first)').hide();   $('.toggle-content dt').click(function(){
   		$(this).toggleClass('open').next('dd').toggle(300);   });});
