jQuery(document).ready(function() {
	// hides the element
	jQuery('#login-div').hide(); 
	// toggles the slickbox on clicking the noted link 
	jQuery('a#login-toggle').click(function() { 
		jQuery('#login-div').toggle(); 
		return false; });
});