There is tabs with cookie support http://jsfiddle.net/q9Epk/1/
the last few lines of code must completely hide content when click selected nav item but it doesn`t work
// hide tab
$('ul.tabs li.current').click(function() {
$('div.section').find('div.box').hide();
$(this).removeClass('current');
eraseCookie('tabCookie');
});
solution was found in the modification of the function
http://jsfiddle.net/q9Epk/2/