// Put all global "onload" scripts here
$(document).ready(function() {
	$("#area-select").fixSelect();
	$('select', '#search-box').fixSelect('no');
	$('#participators').fixSelect('no');
	$('#sortBy').fixSelect();
});

$.fn.fixSelect = function(search) {
	$(this).bind('change',function() {
		$(this).next().text(this.options[this.selectedIndex].text);
		if(search != 'no') $(this).parents('form').submit();
	}).bind('name', function() {
		$(this).next().text(this.options[this.selectedIndex].text);
	});
	$(this).trigger('name');
};