// JavaScript Document
$(document).ready(function(){
		$('.leftSidebar h4').next('div').filter(function() {
			  return $.cookie("expanded-" + $(this).parent("[id]").attr("id"));
			}).hide();
			
			$('.leftSidebar h4').click(function(){
			  $(this).toggleClass('close').toggleClass('open');
			  var menu = $(this).next('div');
				if(menu.is(':visible')) {
					menu.slideUp('slow');
					$.cookie("expanded-" + $(this).parent().attr("id"), true);
				} else {
					menu.slideDown('slow');            
					$.cookie("expanded-" + $(this).parent().attr("id"), null);
				}
		});
});
	
	