$(document).ready(function() { 
      
    $('#sm_outer').hide();

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

			$('#sm_outer').toggle(400);

			return false;

        });

});
