function toggleAlert($toggle){
	
}

$(document).bind("ready", function(r){
	var $toggle = $("#toggle");
	$toggle.bind("click", function(c){
		$toggle = $(this);
		var dist = '0px';
		var newText = 'show';
		if($toggle.text() == 'show'){
			newText = 'hide';
			dist = '147px';
		}
		$toggle.blur();
		$("#alert").animate( {
				marginTop: dist
			}, 1000, "easeInOutElastic");
		setTimeout(function(t){
			$toggle.text(newText);
			$("#alert").toggleClass('hidden').toggleClass('visible');
		}, 500);
		return false;
	});
	
	$.ifixpng('/js/pixel.gif');
	$('img, .bg-png').ifixpng();
});