  $(document).ready(function() {
		var currentState = $.cookie('oasisState');
		if(currentState){ $("#oasis").css({ top: currentState }); }
		$("#handle a").click(function(){
			$(this).blur();
		    var target = ($("#oasis").css('top') == '5px')? '85px' : '5px';
				$("#oasis").animate({ top: target } , 300);
				$.cookie('oasisState',target, { expires: 1 });
		   });
		
		$('a.external').click( function() {
	        window.open( $(this).attr('href'));
	        return false;
	    });
		
		});	