// $(document).ready(function () {

	$(function () {
		$('.link_category').hide();
	});

	$('#login, #close_login').click(function () {
		$('#admin_bar').slideToggle('fast');
		if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
				$('input:-webkit-autofill').each(function(){
					var text = $(this).val();
					var name = $(this).attr('name');
					$(this).after(this.outerHTML).remove();
					$('input[name=' + name + ']').val(text);
				});
		}
	});
	
	$('#login').click(function () {
		$('#admin_bar input[type=text]').select();
	});
	
	$('#logout').click(function () {
		$(this).submit();
	});
	
	$('.links').children('li').find('h3').click(function () {
		if($(this).parent('li').children('ul').is(':visible')) {
			$(this).parent('li').children('ul').slideUp();
		} else {
			$('.links').find('.link_category:visible').slideUp();
			$(this).parent('li').children('ul').slideDown();
		}
	});
	
	
// });

