jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function

$(document).ready(function() {

// toggles the slickbox on clicking the noted link 
	$('a#sm_toggle').click(function() {
		$('#sm_outer').slideToggle(700);
			return false;
		});		 
});

});

