$(document).ready(function () {
    checkPanels();
    $(".expandPrev").click(function () {
		var panelID = $(this).prev('div.collapsiblePanel').attr('id');
        $(this).prev('div.collapsiblePanel').slideToggle('slow', toggleCookie(panelID));
    });
	$(".expandNext").click(function () {
		var panelID = $(this).parent().next("div.collapsiblePanel").attr('id');
		$(this).parent().next('div.collapsiblePanel').slideToggle('slow', toggleCookie(panelID));
	});
    function toggleCookie(id) {
        if (  ($.cookie('dp-' + id) == 'closed')  || ($.cookie('dp-' + id) == null) ) $.cookie('dp-' + id, 'open');
        else  ($.cookie('dp-' + id, 'closed'));
    }
    function checkPanels() {
        $('div.collapsiblePanel').each(function() {
            if ($.cookie('dp-'+ this.id ) == 'open') $(this).css('display', 'block');
            else $(this).css('display', 'none');
        });
    }
});
