$(document).ready(function() {

	$('#topFormButton').click(function() {
		
		if($(this).hasClass('expand')) {
		
			$(this).removeClass('expand');
			$(this).addClass('contract')
			$(this).animate({ marginTop: 230 })
			$('#topForm').animate({ height: 290 })
					
		} else {
		
			$(this).addClass('expand');
			$(this).removeClass('contract')
			$(this).animate({ marginTop: 120 })
			$('#topForm').animate({ height: 180 })
					
		}
		
	})

})

