///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Scope: This file controls the login within the right bucket
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


$(function() {	
	$('#displayLoginScreen').livequery('click',function() {
		$('#rightFooterSpan').load(includePath+"include/templateFiles/footerBucketLogin.php","sid="+Math.random()+"&includePath="+includePath); // Load the login footer
		return false;
	});
	
	///// Switch the login ///////////
	$('#login input[type=image]').click(function() {
		$('#login').hide();
		$('#logged-in-as').fadeIn(400);
	});
	
	$('#logout').click(function() {
		$(this).parent('div').hide();
		$('#login').fadeIn(400);
	});
});
