$(document).ready(function() {
 
 // toggles the slickbox on clicking the noted link 
  $('a#toggle').click(function() {
    $('div#newsletter_content').slideToggle(400);
    return false;
  });

// toggles the slickbox on clicking the noted link 
  $('h3#networking').click(function() {
    $('ul#networking_content').slideToggle(400);
    return false;
  });

// toggles the slickbox on clicking the noted link 
  $('h3#recycling').click(function() {
    $('ul#recycling_content').slideToggle(400);
    return false;
  });

// toggles the slickbox on clicking the noted link 
  $('h3#training').click(function() {
    $('ul#training_content').slideToggle(400);
    return false;
  });

// toggles the slickbox on clicking the noted link 
  $('h3#software').click(function() {
    $('ul#software_content').slideToggle(400);
    return false;
  });

// toggles the slickbox on clicking the noted link 
  $('h3#hardware').click(function() {
    $('ul#hardware_content').slideToggle(400);
    return false;
  });

// toggles the slickbox on clicking the noted link 
  $('h3#customization').click(function() {
    $('ul#customization_content').slideToggle(400);
    return false;
  });
 
});