
function setLeftSearch( sText)
{
	// Suche
	if( oSearchField = $( '#dd_left_search'))
	{
		oSearchField.val( sText);
		
		oSearchField.click( function ()
				{
			wert = oSearchField.val();
			if(wert == sText)
			{
				oSearchField.val('');
			}
				}
		);		
	}
}

function setTooltip( sId)
{
	if( oDiv = $( '#' + sId))
	{
		$( oDiv).hover( function()
				{
					tt_id = $( this).attr( 'id') + '_tt';
					oTT = $( '#' + tt_id);
					$( oTT).addClass( 'on');
				},
				function()
				{
					tt_id = $( this).attr( 'id') + '_tt';
					oTT = $( '#' + tt_id);
					$( oTT).removeClass( 'on');
				}
		);					
	}
}