//	Custom jQuery functions

$(document).ready(
	function() {

		$('#small_box_area div:nth-child(3n+1)').css({'clear': 'left'});

		$('#show_login').not('.show').toggle(
			function(){
				$('#login').slideDown(250, function(){
					$(this).find('#email').focus();
				});
			}, function(){
				$('#login').slideUp(250);
			}
		);
	}
);