/**
 * Autocomplete für Suche
 */

$(document).ready(function() {
	
	$('#input_search').click( function() {
		if( $('#input_search').val() == 'Suche nach ...' ) {
			$('#input_search').val('')
		}
	});

	function format(spiel) {
		return spiel.spiel;
	}
	
	$('#input_search').autocomplete( '/search/autocomplete', { 
	    dataType: 'json',
		autoFill: false,
		mustMatch: false,
		parse: function(data) {
			return $.map(data, function(row) {
				return {
					data: row,
					value: row.spiel,
					result: row.spiel
				}
			});
		},
		formatItem: function(item) {
			return format(item);
		}
	})
	
});	

function systemclick( system ) {
	console.log(system);
	$.cookie('mysystem', system, { path: '/' });
	return true;
}

