	var reloadTimer = null;
	$("#fsbutton").click(function(){ document.cookie ="flag=1"; 
		setReloadTime(0.5); // In this example we'll use 5 seconds.
		$("#specialstuff").css("display","none");	
		//$(this).find("input").attr("class","displayNone");
		//alert($(this).find("input").attr("class"));
	});
	function setReloadTime(secs)
	{
		if (arguments.length == 1) {
			if (reloadTimer) clearTimeout(reloadTimer);
			reloadTimer = setTimeout("setReloadTime()", Math.ceil(parseFloat(secs) * 1));
		}
		else {
			location.reload();
			//$("#specialstuff").find("input").attr("class");
			//alert("hi");
		}		
	}
