$(document).ready(function(){
	
	$("#counter").css("display","none");

	$("dl.bottom").css("opacity","0");
	$("#top-text-shadow").css("opacity","0");
	$("#alert").css("opacity","0");
	$("#form").css("opacity","0");
	
	$("#alertshow").click(function () {
		$("#alert").css("display","block").animate({
				opacity: 1
		},500);
	});
	
	$("#showform").click(function () {
		$("#form").css("display","block").animate({
				opacity: 1
		},500);
	});
	
	$("#allstat a").click(function () {
		$("#allstat").css("display","none");
		$("dl.top").css("padding-bottom","0px");
		$("dl.bottom").css("display","block").animate({
				opacity: 1
		},500);
	});
	
	
	$("#top-text").hover(
		function () {
			$("#top-text-shadow").html($("#top-text").html()).animate({
				opacity: 1
			},500);
		}, 
		function () {
			$("#top-text-shadow").animate({
				opacity: 0
			},500);
		}
	);
});	

function foo(){
}