
  /* +-----------------------------------------------------------------------+
     | Script Base Main Javascript
     +-----------------------------------------------------------------------+
     | Copyright (c) Firma Noname Media, www.nonamemedia.de
     | Developed by Andi Heinkelein, 21-Jun-2007
     +-----------------------------------------------------------------------+ */

	/* +------------------------- Script Config -----------------------------+ */
	
	
	
	/* +------------------------ Function/Class -----------------------------+ */
	
	var SELECT_LIST_OPEN = false;
	function openSearchSelectList() {
	
		if (SELECT_LIST_OPEN) {
		
			jambo.layer.close('searchListSelectBox');
			SELECT_LIST_OPEN = false;
		}
		else {
		
			jambo.layer.openContex('searchListSelectBox', 'searchListInput', 1, -2);
			SELECT_LIST_OPEN = true;
		}
	}
	
	function selectCategorie(selectValue, selectName) {
	
		document.forms['searchForm'].elements['categorie'].value = selectValue;
	}
	
	/* +--------------------------- Events ----------------------------------+ */
	
	
	