function toggle_visibility(id) {
   var e = document.getElementById(id);
   if(e.style.display == 'block')
	  e.style.display = 'none';
   else
	  e.style.display = 'block';
}

function change_pic(id, src) {
	document.getElementById(id).src = src;
}

function selectItem(li) {return false;}
function formatItem(row) {return row[0] + "<br /><i>" + row[1] + "</i>";}
// $(document).ready(function() {$("#searchBox").autocomplete("http://www.brinck.de/shop/search_jquery.php", {minChars:3,max:30,mustMatch:true,matchContains:true,onItemSelect:selectItem,formatItem:formatItem,selectOnly:1});});
