// Author:  Matt Rossi
// Website: ifohdesigns.com

$(document).ready(function(){
						   			
	$("#panel").show();
	
	$(".slide").click(function(){

      if ($("#header").is(":hidden")) {
        $("#header").slideDown("slow");
	$(this).addClass("active");
         $.cookie('showTop', 'collapsed');
	return false;
	
      } else {
        $("#header").slideUp("slow");
	$(this).removeClass("active");
        $.cookie('showTop', 'expanded');
	return false;

      }
	
   });
	
	// COOKIES
    // Header State
    var showTop = $.cookie('showTop');

    // Set the user's selection for the Header State
    if (showTop == 'expanded') {
	$("#header").hide();
	$(".slide").addClass("active");
	
    };
	
	 
});