$(document).ready(function(){
	var showprocate=getCookie('showprocate');
	if(showprocate==1) {
		$("#gategory .third").show();
	} else {
		$("#gategory .third").hide();
	}
	$("#gategory .second").click(function(){
		var showprocate=getCookie('showprocate');
		if(showprocate==1) {
			setCookie("showprocate",'0');
			$("#gategory .third").fadeOut("normal");
			$("#gategory .four").fadeOut("normal");
		} else {
			setCookie("showprocate",'1');
			$("#gategory .third").fadeIn("normal");
			$("#gategory .four").fadeIn("normal");
		}		
	});
	
	
});
