$(function() {  
	$("input")
		.focus(function(){ $(this).addClass("focus"); })
		.blur(function() { $(this).removeClass("focus"); });
});

$(document).ready(function(){
	$(".animatetogggle").click(function(){
		$(".helpbox")
	      	.animate({height: "toggle",opacity: "toggle"},"slow");
		$(".button").toggle();
	});
});


