﻿$(document).ready(function()
{
    $('#header input.was').toggleValue('Was?');
    $('#header input.wo').toggleValue('Wo?');

	$('input#wo').autocomplete(
			'http://www.popula.de/suggestcity',
			{
				dataType: 'json',
				matchContains: true,
				cacheLength: 0,
				width: 177,
				delay: 100,
				scroll: false,
				mustMatch: false,
				onselect: ''
			}
		);
    
});

$(window).load(function() {

});


