 $(document).ready(function() {
// shows the slickbox DIV on clicking the link with an ID of "slick-show"

      $('a#jqlink').click(function() {

          $('#login').toggle('slow');

          return false;

        });
		
		// toggle privacy on payments page
		$('a#privacyButton').click(function() {

          $('#privacy').toggle();

          return false;

        });
		
		// toggle terms on payments page
		$('a#termsButton').click(function() {

          $('#terms').toggle();

          return false;

        });
		

	

      });