function toggleAlert(){
	$("#toggle").blur();
	$("#alert").animate( {
			top: (($("#toggle").html() == "show") ? "-15px" : "-163px")
		}, 1000, "easeInOutElastic");
	setTimeout(function(t){
			$("#toggle").html((($("#toggle").html() == "show") ? "hide" : "show"));
			$("#alert").toggleClass("hide");
			$("#alert").toggleClass("show");
		}, 500);	
	return false;
}

$(document).bind("ready", function(r){
	$("#toggle").bind("click", function(c){ return toggleAlert(); });
	$.ifixpng('/js/pixel.gif');
	$('img, .bg-png').ifixpng();
});