var SearchForm = {

	initialize: function() {
		//
	},

	/*
	 * Shows the searchform
	 */
	expand: function() {
		
		$('#search_form').show();
		$('#search_form_closed').hide();
		$('#search_form').animate({'height': '172'}, function() {
			$('#search_form form').fadeIn();
		});
		
	},

	/*
	 * Hides the searchform
	 */
	collapse: function() {
		
		$('#search_form form').fadeOut( function() {
			$('#search_form').animate({'height': '35'}, function() {
				$('#search_form_closed').show();
				$('#search_form').hide();
			});
		});
		
	}
	
};