
	/*
	 *	jquery.suggest 1.1 - 2007-08-06
	 *
	 *	Uses code and techniques from following libraries:
	 *	1. http://www.dyve.net/jquery/?autocomplete
	 *	2. http://dev.jquery.com/browser/trunk/plugins/interface/iautocompleter.js
	 *
	 *	All the new stuff written by Peter Vulgaris (www.vulgarisoip.com)
	 *	Feel free to do whatever you want with this file
	 *
	 */

	(function($) {

		$.suggest = function(input, options) {

			var $input = $(input).attr("autocomplete", "off");
			var $results = $(document.createElement("ul"));

			var timeout = false;		// hold timeout ID for suggestion results to appear
			var prevLength = 0;			// last recorded length of $input.val()
			var cache = [];				// cache MRU list
			var cacheSize = 0;			// size of cache in chars (bytes?)

			$results.addClass(options.resultsClass).appendTo('body');

			resetPosition();
			$(window)
				.load(resetPosition)		// just in case user is changing size of page while loading
				.resize(resetPosition);

			$input.blur(function() {
				setTimeout(function() { $results.hide() }, 200);
			});

			// help IE users if possible
			try {
				$results.bgiframe();
			} catch(e) { }

			// I really hate browser detection, but I don't see any other way
			if ($.browser.mozilla)
				$input.keypress(processKey);	// onkeypress repeats arrow keys in Mozilla/Opera
			else
				$input.keydown(processKey);		// onkeydown repeats arrow keys in IE/Safari

			function resetPosition() {
				// requires jquery.dimension plugin
				var offset = $input.offset();
				$results.css({
					top: (offset.top + input.offsetHeight) + 'px',
					left: offset.left + 'px'
				});
			}

			function processKey(e) {

				// handling up/down/escape requires results to be visible
				// handling enter/tab requires that AND a result to be selected
				if ((/27$|38$|40$/.test(e.keyCode) && $results.is(':visible')) ||
					(/^13$|^9$/.test(e.keyCode) && getCurrentResult())) {

					if (e.preventDefault)
						e.preventDefault();
					if (e.stopPropagation)
						e.stopPropagation();

					e.cancelBubble = true;
					e.returnValue = false;

					switch(e.keyCode) {

						case 38: // up
							prevResult();
							break;

						case 40: // down
							nextResult();
							break;

						case 9:  // tab
						case 13: // return
							selectCurrentResult();
							break;

						case 27: //	escape
							$results.hide();
							break;

					}

				} else if ($input.val().length != prevLength) {

					if (timeout) 
						clearTimeout(timeout);
					timeout = setTimeout(suggest, options.delay);
					prevLength = $input.val().length;

				}

			}

			function suggest() {

				var q = $.trim($input.val());

				if (q.length >= options.minchars) {

					cached = checkCache(q);

					if (cached) {

						displayItems(cached['items']);

					} else {

						$.get(options.source, {q: q}, function(txt) {

							$results.hide();

							var items = parseTxt(txt, q);

							displayItems(items);
							addToCache(q, items, txt.length);

						});

					}

				} else {

					$results.hide();

				}

			}

			function checkCache(q) {

				for (var i = 0; i < cache.length; i++)
					if (cache[i]['q'] == q) {
						cache.unshift(cache.splice(i, 1)[0]);
						return cache[0];
					}

				return false;

			}

			function addToCache(q, items, size) {

				while (cache.length && (cacheSize + size > options.maxCacheSize)) {
					var cached = cache.pop();
					cacheSize -= cached['size'];
				}

				cache.push({
					q: q,
					size: size,
					items: items
					});

				cacheSize += size;

			}

			function displayItems(items) {

				var html = '';
				var titel;
				var produktion;
				var id;
				var spos1,spos2;
				var animateheight = 0;

				for (var i = 0; i < items.length; i++)
				{
					line = items[i];

					if ( line.substr(0,3) == '+++' )
					{
						html += '<li class="weitere">';
						html += 'weitere Ergebnisse für "' + $input.val() + '"';
						html += '<span class="inv">|' + $input.val() + '</span>';
						html += '</div>';
						html += '</li>';
						animateheight += 23;
					}
					else
					{
						spos1 = line.indexOf('|');
						spos2 = line.lastIndexOf('|');
						titel = line.substr(0,spos1);
						produktion = line.substr(spos1+1,spos2-spos1-1);
						id = line.substr(spos2+1);
						html += '<li>';
						html += '<img src="http://www.tvdb.info/gfx/v/v' + spvier(id) + '.gif">';
						html += '<span class="titel">' + titel + '</span>';
						html += '<div>';
						html += '<span class="prod">' + produktion + '</span>';
						html += '<span class="inv">|' + id + '</span>';
						html += '</div>';
						html += '</li>';
						animateheight += 45;
					}
				}
				html += '<li class="weitere">';
				html += 'DVD & Shopsuche nach "'+ $input.val() + '"';
				html += '<span class="inv">|' + $input.val() + '</span>';
				html += '</li>';
				animateheight += 23;

				html += '<li class="weitere">';
				html += 'Personensuche nach "'+ $input.val() + '"';
				html += '<span class="inv">|' + $input.val() + '</span>';
				html += '</li>';
				animateheight += 23;

				html += '<li class="weitere">';
				html += 'Newssuche nach "'+ $input.val() + '"';
				html += '<span class="inv">|' + $input.val() + '</span>';
				html += '</li>';
				animateheight += 23;

				html += '<li class="weitere">';
				html += 'Inhaltssuche nach "'+ $input.val() + '"';
				html += '<span class="inv">|' + $input.val() + '</span>';
				html += '</li>';
				animateheight += 23;

				html += '<li class="weitere">';
				html += 'Programmsuche nach "'+ $input.val() + '"';
				html += '<span class="inv">|' + $input.val() + '</span>';
				html += '</li>';
				animateheight += 22;

				$results.html(html).animate({height:animateheight},"fast");

				$results
					.children('li')
					.mouseover(function() {
						$results.children('li').removeClass(options.selectClass);
						$(this).addClass(options.selectClass);
					})
					.click(function(e) {
						e.preventDefault(); 
						e.stopPropagation();
						selectCurrentResult();
					});

			}

			function parseTxt(txt, q) {

				var items = [];
				var tokens = txt.split(options.delimiter);

				// parse returned data for non-empty items
				for (var i = 0; i < tokens.length ; i++) {
					var token = $.trim(tokens[i]);
					if (token) {
						token = token.replace(
							new RegExp(q, 'ig'), 
							function(q) { return '<span class="' + options.matchClass + '">' + q + '</span>' }
							);
						items[items.length] = token;
					}
				}

				return items;
			}

			function getCurrentResult() {

				if (!$results.is(':visible'))
					return false;

				var $currentResult = $results.children('li.' + options.selectClass);

				if (!$currentResult.length)
					$currentResult = false;

				return $currentResult;

			}

			function selectCurrentResult() {

				$currentResult = getCurrentResult();

				if ($currentResult) {
					var $redirectTo = $currentResult.text().substr($currentResult.text().indexOf('|')+1);

					if ($currentResult.text().indexOf('DVD & Shopsuche')==0)
					{
						$redirectTo += '/shop';
					}
					else if ($currentResult.text().indexOf('Personensuche')==0)
					{
						$redirectTo += '/person';
					}
					else if ($currentResult.text().indexOf('Newssuche')==0)
					{
						$redirectTo += '/news';
					}
					else if ($currentResult.text().indexOf('Inhaltssuche')==0)
					{
						$redirectTo += '/inhalt';
					}
					else if ($currentResult.text().indexOf('Programmsuche')==0)
					{
						$redirectTo += '/programm';
					}
					else if ($currentResult.text().indexOf('weitere Ergebnisse')!=0)
					{
						$redirectTo = '#' + $redirectTo;
						document.getElementById("search_box").style.color = '#ffffff';
					}
					$input.val($redirectTo);
					$results.hide();

					if (options.onSelect)
						options.onSelect.apply($input[0]);

					// Resultat direkt übernehmen
					document.suchform.submit();
				}

			}

			function nextResult() {

				$currentResult = getCurrentResult();

				if ($currentResult)
					$currentResult
						.removeClass(options.selectClass)
						.next()
							.addClass(options.selectClass);
				else
					$results.children('li:first-child').addClass(options.selectClass);

			}

			function prevResult() {

				$currentResult = getCurrentResult();

				if ($currentResult)
					$currentResult
						.removeClass(options.selectClass)
						.prev()
							.addClass(options.selectClass);
				else
					$results.children('li:last-child').addClass(options.selectClass);

			}

		}

		$.fn.suggest = function(source, options) {

			if (!source)
				return;

			options = options || {};
			options.source = source;
			options.delay = options.delay || 100;
			options.resultsClass = options.resultsClass || 'ac_results';
			options.selectClass = options.selectClass || 'ac_over';
			options.matchClass = options.matchClass || 'ac_match';
			options.minchars = options.minchars || 2;
			options.delimiter = options.delimiter || '\n';
			options.onSelect = options.onSelect || false;
			options.maxCacheSize = options.maxCacheSize || 65536;

			this.each(function() {
				new $.suggest(this, options);
			});

			return this;

		};

	})(jQuery);

function spvier(wert) {

	if (wert<10) return "000" + parseInt(wert);
	else if (wert<100) return "00" + parseInt(wert);
	else if (wert<1000) return "0" + parseInt(wert);
	else return parseInt(wert);

}

