на скорую руку :
$(document).ready(function() {
if($.cookie('state') == 'open'){
$("DIV#box2").show();
$("DIV#box").hide();
} else if ($.cookie('state') == 'closed') {
$("DIV#box2").hide();
$("DIV#box").show();
}
$("A#trigger").toggle(function() {
//Отображаем скрытый блок
$("DIV#box2").show();
$("DIV#box").hide();
$.cookie('state', 'open', { expires:3 });
return false;
},
function() {
//Прячем скрытый блок
$("DIV#box2").hide();
$("DIV#box").show();
$.cookie('state', 'closed', { expires:3 })
return false;
});//end of toggle()
});//end of ready()