<!--

// Login box and the call for the logos to start is handled here
$(document).ready(function(){
	$("#showLoginForm").click(function(){
		if ($("#loginbox_hideable").is(":hidden")){
			$("#loginbox_hideable").slideDown("slow");
			$("#member_quote").slideUp("slow");
		}
		else{
			$("#loginbox_hideable").slideUp("slow");
			$("#member_quote").slideDown("slow");
		}
	});				
	$("#loginbox_hideable").hide();
	
});
