 
			$(document).ready(function() {
				// LEFT COLUMN:
					// When the collapse button is clicked:
					$('.collapseLeft').click(function() {
						
						$('.collapseLeft').css("display","none");
						$('.expandLeft').css("display","block");
						$('#leftCol').css("height","20px");
						$.cookie('leftCol', 'collapsed');
						$('.continut-col').hide();
					});
					// When the expand button is clicked:
					$('.expandLeft').click(function() {
						$('.expandLeft').css("display","none");
						$('.collapseLeft').css("display","block");
						$('#leftCol').css("height","580px");
						$.cookie('leftCol', 'expanded');
						 $('.continut-col').show();
					});
				 
				// COOKIES
					// Left column state
					var leftCol = $.cookie('leftCol');
					 
					// Set the user's selection for the left column
					if (leftCol == 'collapsed') {
						$('.collapseLeft').css("display","none");
						$('.expandLeft').css("display","block");
						$('#leftCol').css("height","20px");
						$('.continut-col').hide();
					};
					 
				});

 
