$(document).ready(function(){

		jQuery('#Navmenu').accordion({
			header: 'div.title',
			active: false,
			alwaysOpen: false,
			animated:  false,
			autoheight: false
		});

       // hides the slickbox as soon as the DOM is ready
       // (a little sooner than page load)
        $('#navbox').hide();
// toggles the slickbox on clicking the noted link  
        $('a#slick-toggle').click(function() {
          $('#navbox').toggle(400);
          return false;
        });





   // Your code here
 });
