/*$(function(){

	var jLoginControls = $('#login-controls');

	jLoginControls.find('a').click(
		function() {
			var jLogin = $('#login');
			var jLoginAnchors = jLoginControls.find('a');
			jLoginAnchors.toggle();
			var nTop = '0px';

			// get the first of the two login display control links to figure out which state this panel is in
			// then toggle
			if ( jLoginAnchors.slice(0,1).is(':visible') ) {
				nTop = "-" + (jLogin.height() - 31) + 'px';
				jLoginAnchors.removeClass('collapse');
			} else {
				jLoginAnchors.addClass('collapse');
			}

			jLogin.animate(
				{ top: nTop }, 800
			);
		}
	);
});
*/