window.addEvent('domready', function() {
	$$('.block').each(function(item, index){
		h1 = item.getElement('h1');
		if(h1 && (item.id=="block_stream" || item.id=="block_tags" || item.id=="block_blogs" || item.id=="block_friends"))
		{
			var h  = new Element('a', {'href':'#','style':'float:right;'});
			h.appendText('[x]');
			h.inject(item, 'top');
			h.addEvent('click', function(){
				h1 = item.getElement('h1');
				h1 = h1.get('text');
				item.addClass('hidden');
				Cookie.write('block_hidden['+item.id+']', 'close');
				var r  = new Element('a', {'href':'#','style':'top:'+(400+30*index)+'px;position:absolute;right:5px;background-color:white;padding:5px;'});
				r.appendText(h1);
				r.inject($$('body')[0]);
				r.addEvent('click', function(){
					item.removeClass('hidden');
					Cookie.write('block_hidden['+item.id+']', 'open');
					r.dispose();
					return false;
				});
				return false;
			});
			if(Cookie.read('block_hidden['+item.id+']') == 'close')
			{
				h.fireEvent('click');
			}
		}
	});
});