$(document).ready(function(){
	
	$('input[name=searchWhat]').autoComplete({
		backwardsCompatible: true,
		ajax: '/search/autocomplete/what/format/json/',
		useCache: false,
		minChars: 3,
		preventEnterSubmit: true,
		tabToNext: 'input[name=searchText]',
		leftAdjustment: -9,
		width: 351,
		onSelect: function(data, $li){
			$('#searchWhat').val(data.code);
			$('#searchType').val(data.type);

		}
	});
	
	$('input[name=searchText]').autoComplete({
		backwardsCompatible: true,
		ajax: '/search/autocomplete/portsAndCountries/format/json/',
		useCache: false,
		minChars: 3,
		preventEnterSubmit: false,
		width: 351,
		leftAdjustment: -9,
		onSelect: function(data, $li){
			$('#searchWhere').val(data.code);
		}
	});
	
	$('#searchWhat').keypress(function(e) {
		if (e.which == '13') {
			$('#anonSearch').submit();
		}
	});
	
	$('#searchText').keypress(function(e) {
		if (e.which == '13') {
			$('#anonSearch').submit();
		}
	});
	
	$('#anonSearch').live('submit', function(e) {
		e.preventDefault();		
		this.submit();
		if (!$('#search_box') || !$('#search_box').hasClass('zone_search_box')) {
			$('a.search-button').html('<img src="/images/buttons/search-button-animated-bluebg.gif" alt="" />');
		}
	});
	
	$('#searchButton').live('click', function(e) {
		e.preventDefault();
		$('#anonSearch').submit();
    });
});
