
// Hide the stat-box
function hide_stats(){
	var user_id = $(this).attr('href');
	$('#stat_box').fadeOut(300);
	$.post("/ajaxall/hidestatbox", { userId: user_id });
	return false;
}

function focusLogin(){
	$('#user_name').focus();	
}

$(document).ready(function() {
	$(".have_submenu").hover(
		function () {
			$(this).addClass('hover');
		}, 
		function () {
			$(this).removeClass('hover');
		}
	);
	$('#toggle_sign_in').click(function(){		
		$('.login_box').slideToggle(50,focusLogin);
		return false;
	});	
	$('#hide_stats').click(hide_stats);
});