                    var suggest			= new FFSuggest();
                    var searchURL		= "/epages/Soldan.sf/?ViewAction=SuggestProxy&ObjectID=4625&";
                    var formname		= "search_word_inc";
                    var queryParamName	= "query";
                    var divLayername	= "suggestLayer";
                    var instanceName	= "suggest";
                    var debugMode		= true;
                    suggest.init(searchURL, formname, queryParamName, divLayername, instanceName, debugMode);
                    document.onmousedown = suggest.hideLayerOutsideCall;
                    $j(document).ready(function(){
                        var Div = document.getElementById("suggestLayer");
                        Div.parentNode.removeChild(Div);
                        document.body.appendChild(Div);
                        setStyle("div.suggestLayer", "font-family:Arial, Verdana, Helvetica;position:absolute;display:none;padding:0px;margin:0px;z-index:1000;background-color:white;background:transparent;opacity:.9;filter:alpha(opacity=90);");
                        setStyle("table.suggestLayer", "font-size:11px;border:1px solid #000000;height:12px;background-color:white;color:#173553;cursor:pointer;");
                        setStyle("tr.suggestLayer", "height:12px;");
                        setStyle("td.suggestLayer", "padding: 0;height:12px;");
                        setStyle("tr.suggestHeader", "color:#173553;font-weight:normal;font-size:10px;");
                        setStyle("tr.suggestHeader td", "border-bottom: 1px solid #5C637D; padding: 3 3 3 5px");
                        setStyle("td.suggestTextQuery", "font-weight: bold; padding-top:2pm; padding-right:15px; padding-bottom:2px; padding-left:10px;");
                        setStyle("span.suggestTextQueryTyped", "color: #5c7997; font-weight: bold;");
                        setStyle("td.suggestTextType", "padding-top:2pm; padding-right:15px; padding-bottom:2px; padding-left:15px; width: 30%;");
                        setStyle("td.suggestTextAmount", "padding-top:2pm; padding-right:15px; padding-bottom:2px; padding-left:15px; width: 30%; text-align: right;");
                        setStyle("tr.suggestRow", "padding-top:2pm; padding-right:2px; padding-bottom:2px; padding-left:2px;background-color:#FCFCFC;");
                        setStyle("tr.suggestHighlight", "color:#FCFCFC; background-color:#D9DCDF;");
                        setStyle("tr.suggestHighlight span.suggestTextQueryTyped", "color: #173553;");
                        setStyle("td.suggestFooter", "height:25px; border-top:solid 1px #5C637D; font-size:9px; color: #173553; background-color: #FCFCFC; background-image: url(\"/WebRoot/SoldanDB/SF/logo_fact-finder_suggest.gif\"); background-repeat: no-repeat; background-position: right;");

                        var Offset;
                        Offset = $j("#ffquery").offset();
                        Offset.top = Offset.top + $j("#ffquery").outerHeight();
                        $j("#suggestLayer").css(Offset);
                        if (!document.getElementById("overSuggestLayer")) {
                            var suggestLayer = document.getElementById("suggestLayer");
                            var previous = suggestLayer.previousSibling;
                            var iframe = document.createElement("iframe");
                            iframe.style.position ="absolute";
                            iframe.style.zIndex="4";
                            iframe.src="javascript:'<html></html>';";
                            iframe.id="overSuggestLayer";
                            iframe.scrolling = "no";
                            iframe.frameBorder ="0";
                            iframe.style.display = "none";
                            document.body.insertBefore(iframe, suggestLayer);
                        }
                        $j("#overSuggestLayer").css($j("#suggestLayer").offset());
                        $j("#overSuggestLayer").width($j("#suggestLayer").width());
                        $j("#overSuggestLayer").height($j("#suggestLayer").height());
//iebug
onSuggestLayerHidden ();

//set blur and focus events for the inputtext
checkInputText();
					$j(document.forms["search_word_inc"]["query"]).blur( function() { checkInputText(); } );
					$j(document.forms["search_word_inc"]["query"]).focus( function() { hideDefaultInputText(); } );
					
					function hideDefaultInputText(){
						var input = document.forms["search_word_inc"]["query"];
						if($j.trim(input.value) == 'Suchbegriff eingeben...'){
							input.value = '';
							$j(input).removeClass('defaultText');
						}
					}
					function checkInputText(){
						var input = document.forms["search_word_inc"]["query"];
//alert("debug"+input);
						if($j.trim(input.value) == ''){
							input.value = 'Suchbegriff eingeben...';
							$j(input).addClass('defaultText');
						}
					}

                    });
