$(document).ready(function(){
                $("#szukaj_cpv").autocomplete('/kod.php',{
            		selectFirst: true,
            		cacheLength: 1,
            		mustMatch: false,
            		matchContains: true,
            		autoFill: false,
            		width: 700,
            		max: 30,
            		scrollHeight: 300,
					formatItem: function(row, i, max) {
					    /*return row[1] + " (<b> woj. " + row[2] + " pow. " + row[3] + " gm. " + row[4] + "</b>)";*/
						return row[1];
					},
					formatMatch: function(row, i, max) {
					    return row[1];
					},
					formatResult: function(row) {
					    return row[1];
					}
				});               
            });
$(document).ready(function(){
	$('#szukaj_cpv').focus();   
});
            
$(document).ready(function(){
	
		// second simple accordion with special markup
		jQuery('#navigation').accordion({
			active: false,
			header: '.head',
			navigation: true,
			autoheight: false,
			fillSpace: false,
			animated: 'easeslide'
		});
});
