function toggle_category(el)
{
	var ul = $(el).parent().find('ul');
	if (!ul.is(':hidden'))
	{
		$('.category_list, .attribute_list').slideUp('fast');
	} else {
		$('.category_list, .attribute_list').slideUp('fast');
		$(el).parent().find('ul').slideToggle('fast');
	}
}

$(document).ready(function(){
	$('#search_city').autocomplete('/ajax/city_search', {
		minChars: 2,
		max: 15,
		autoFill: false,
		mustMatch: false,
		matchContains: false,
		scrollHeight: 220,
		width: 400,
		formatItem: function(row, i, total) {
			if (row[1] != undefined && row[1] != '')
			{
				return row[0] + ' (' + row[1] + ')';
			} else {
				return row[0];
			}
		}
	});
})
