jQuery(document).ready(function($) {
	jQuery('.button-search').click(function(){
		jQuery(this).closest('form').submit();
	})
});

