

$(document).ready(function() {
   
 	
	$("#slidepanel").hide();

 var a = $("<a><img src='images/bullet-bluegrey.gif' height='10' width='8' alt='Best Gifts' /> <strong>See all customer reviews</strong></a>").attr('href','#').addClass("btn-slide");
 $('#wrapper').before(a);


   $(".btn-slide").click(function(){

      if ($("#slidepanel").is(":hidden")) {
        $("#slidepanel").slideDown("slow");
	$(this).addClass("active");
         $.cookie('showTop', 'collapsed');
	return false;
	
      } else {
        $("#slidepanel").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 == 'collapsed') {
	$("#slidepanel").show();
	$(".btn-slide").addClass("active");
	
    };
 
});