$(document).ready(function(){
	$("table tr:odd").addClass("odd");
	$("table tr:even").addClass("even");
	
	$("#PLZOrt").autocomplete({
				source: function(request, response) {
        			$.ajax({
          				url: "/aschaffenburgGips/Gips?SessionMandant=Aschaffenburg&Anwendung=CMSWPEDatenTabelle&Methode=ShowHTMLAusgabe&RessourceID=42336",
               			dataType: "json",
          				data: {
            				"InhaltListe.Container.SuchEingabe" : request.term
          				},
          				success: function(data) {
            				response(data);
          				}
        			});
      			},
                minLength: 2
    }); 
});
