// JavaScript Document
    $(document).ready(function() {
     // hides the slickbox as soon as the DOM is ready
      $('#userbox-slidebox1').hide();
	  $('#userbox-slidebox2').hide();
     // toggles the slickbox on clicking the noted link  
      $('#mssg-slide').click(function() {
        $('#userbox-slidebox1').slideToggle(200);
        return false;
      });
     // toggles the slickbox on clicking the noted link  
      $('#nomssg-slide').click(function() {
        $('#userbox-slidebox2').slideToggle(400);
        return false;
      });
    });
