$(document).ready(function() {
	
	$('a#show').hide();
	
	if ($.cookie('logobar') == 'false') {
		$('tr#logobar').hide();
		$('a#show').show();
		$('a#hide').hide();
	}
	
	$('a#hide').click(
		function() {
			$.cookie('logobar', 'false');
			$('tr#logobar').hide();
			$('a#show').show();
			$('a#hide').hide();
		}
	);
	
	$('a#show').click(
		function() {
			$.cookie('logobar', 'true');
			$('tr#logobar').show();
			$('a#show').hide();
			$('a#hide').show();	
		}
	);
});