 $(document).ready(function() {
	$(".form").hide();
	$("#show-form").click(function() {
		$(".form").animate({width: "toggle"}, 1000);
	});
	
	$("#hide-form").click(function() {
		$(".form").animate({width: "toggle"}, 1000);
	});
	
	$("#show-form").hover(function () {
	$(this).css('cursor','pointer');
	}, 
	function () {
	$(this).css('cursor','auto');
	}
	);
	
	$("#hide-form").hover(function () {
	$(this).css('cursor','pointer');
	}, 
	function () {
	$(this).css('cursor','auto');
	}
	);
	
});
