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

		$(document).ready(function() {
		  $('a#loginLink').click(function() {
			if (document.getElementById('loginForm').style.display == 'block')
			{
				$('#loginForm').fadeOut('fast');
			}
			else
			{
				$('#loginForm').fadeIn('fast');
				document.getElementById('username').focus();
			}
		    return false;
		  });
		});
