/*-----------------------------------------------------------------------------
Web Site:			QVision

$CteatedDate:		18.08.2009 $
$Autor:				annag $

$Revision: 20 $
$LastChangedDate: 2009-08-18 08:50:12 +0100 (Tue, 18 Aug 2009) $
$LastChangedBy: annag $
-----------------------------------------------------------------------------*/

MainNavigation = function(ElementId)
{
	navRoot = document.getElementById(ElementId).getElementsByTagName("ul")[0];
	for (i=0; i<navRoot.childNodes.length; i++)
	{
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI")
		{
			node.onmouseover=function()
			{
				this.className+=" sfhover";
			}
			node.onmouseout=function()
			{
				this.className=this.className.replace("sfhover", "");
			}
		}
	}
}

function setOnFocus(keywords, control) {
    if (control.value == keywords) {
        control.value = ''; 
    }
 }

 function setOnBlur(keywords, control) {
     if (control.value == '') {
         control.value = keywords; 
     }
 }
