

$(document).ready(function(){
						   
	$("#divStayTopLeft .delete").click(function(){
		$(this).parents("#divStayTopLeft").toggle();
		$.cookie("example", "stop", { expires: 1 });
	});

});






//document.write($.cookie('example'));


 var noshow = $.cookie('example');
    // Set the user's selection for the left column
    if (noshow == 'stop') {
        $('.panel').css("display","none");
          };
		  
		  if (noshow != 'stops'){
			  
			  
			  $(document).ready(function(){

	
		$("#panel").fadeIn(3000);
		//$(this).toggleClass("active"); return false;
	
	
	 
});
			  
			  
			  
			  
			  };
    // Set the user's selection for the right column
    

