$(function(){
	// Toggle locations
	$('#locations ul li span').next().hide();
	
	$('#locations ul li span')
	.click( function(){
		$(this).next().slideToggle('slow', function(){
			$(this).parent().toggleClass('active');
		});
		return false;
	});
	// End Toggle locations
	
	// Remove border from last row item
	$('#content #rows .item:last').css('border', 0);
	
	//$('a[href=#]').click(function(){ return false; });
	
	$("#from").autocomplete(from, {
		minChars: 0,
		max: 12,
		autoFill: true,
		mustMatch: false,
		matchContains: false,
		scrollHeight: 220
	});
	$("#to").autocomplete(to, {
		minChars: 0,
		max: 12,
		autoFill: true,
		mustMatch: false,
		matchContains: false,
		scrollHeight: 220
	});
	
	$("label.overlabel").overlabel();
});