// JavaScript Document

$(document).ready(function() {
	$("a.login-button").click(function(){
		$("div.login-form").addClass("show");
		$("div.login-form").animate({
			height: "300px"
		})
		.animate({
			height: "250px"
		}, "fast");
		$("a.login-button").toggle();
		$(".footer > div.wrap").addClass("pad");
	
	});	
	
   $("a.close-button").click(function(){
		$("div.login-form").animate({
			height: "0px"
		}, "fast");
		$("a.login-button").toggle();
		$(".footer > div.wrap").removeClass("pad");
		$("div.login-form").removeClass("show");
   });	
	
});