var baseURL = "http://www.euskaldunongida.net";

$(document).ready(function(){
	// Bilaketa orokorra
	$.widget("custom.catcomplete", $.ui.autocomplete, {
		_renderMenu: function( ul, items ) {
			var self = this,
				currentCategory = "";
			$.each( items, function( index, item ) {
				if ( item.category != currentCategory ) {
					ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
					currentCategory = item.category;
				}
				self._renderItem( ul, item );
			});
		}
	});
	//url = "http://192.168.5.2/wwwartez/web_gida";
	$("#bilaketa").catcomplete({
		source: baseURL+"/bilatu.php",
		minLength: 3,
		select: function(event, ui) {
			window.location = ui.item.id;
		}
	});
	
	$("#bilaketa_aukeratu").catcomplete({
		source: baseURL+"/bilatu.php",
		minLength: 3,
		select: function(event, ui) {
			window.location = ui.item.id;
		}
	});	
	
	$("#bilaketa_izena").catcomplete({
		source: baseURL+"/bilatu_aurreratua.php?mota=izena",
		minLength: 3,
		select: function(event, ui) {
			window.location = ui.item.id;
		}
	});

	$("#bilaketa_herria").catcomplete({
		source: baseURL+"/bilatu_aurreratua.php?mota=herria",
		minLength: 3,
		select: function(event, ui) {
			//window.location = ui.item.id;
		}
	});
	
	$("#bilaketa_arloa").catcomplete({
		source: baseURL+"/bilatu_aurreratua.php?mota=arloa",
		minLength: 3,
		select: function(event, ui) {
			//window.location = ui.item.id;
		}
	});	
	
	// Multiple select
	$("select[multiple]").asmSelect({
		"removeLabel" : "kendu"
	});
	
});

