var Forum = {};
Forum.searchFormHandler = function(){
	$.get("/",$('#search-form').serializeArray(),function(response){
		$('#threads').html(response);
	});
};
		
$(function(){
	$('#search-button').button();
	$('#search-field').bind('keyup', Forum.searchFormHandler );
	$('#search-button').bind('click', Forum.searchFormHandler );
});