jQuery(document).ready(function(){
			  
	// meniu dropdown
	jQuery("#menu-meniu-header").superfish({
		  			delay:       0,
            speed:       'fast',
            autoArrows:  true,
            dropShadows: false
			  });
	jQuery("input[name=s]").autocomplete(
				"http://www.trafictube.ro/wp-content/themes/trafictube/values.php",
				{
					delay:5,
					minChars:2,
					matchSubset:1,
					matchContains:1,
					cacheLength:10,
					onItemSelect:selectItem,
					formatItem:formatItem,
					onItemSelect:SelectItem,
					autoFill:true
				}
			);
});
function selectItem(li) {
	jQuery("input#s").focus();
	}
function SelectItem(){jQuery("input[name=s]").parents("form").submit();}
function formatItem(row) {return row[0];}
