/* Copyright (C) 2002-2011 by Home of the Brave
   Web http://home.of.the.brave.de
   E-Mail info@brave.de */
/* $Revision: 1.2 $ $Date: 2011/12/12 16:43:42 $ */


/*
 * dependencies: jQuery, jQuery UI
 * owner: Simon.Leidig@brave.de
 *
 */

$(document).ready(function(){
	$('#search, .product_search input[name="search"]').each(function(){
		var f = $(this).parents('form');
		var t = f.attr('action');
		if (t.charAt(0) != '/' && t.indexOf(':') == -1) {
			if (t.substr(0,2) == './') t = t.substr(2);
			t = location.href.replace(/(\/[^\/]*)$/,'/'+t);
		}
		$(this).autocomplete({
			select: function(){setTimeout(function(){f.submit()},50)},
			source: t.replace(/[^\/]+(\/[^\/]*)$/,'Suchbegriffe$1'),
			minLength: 2
		});
	})
});

