<!--	
// DEFINITION DER VARIABLEN
//----------------------------------------------------------------------------------------------------------
	text=new Array();
  	
  	thetitle=new Array();

  	ta="<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=\"#003399\"><tr><td align=right>"+
  	   "<font face=\"Verdana,Arial,Helvetica\" size=-1>";
 	te="&nbsp;</td></tr></table>";
 	textstart="<small>";
 	textend="</small>";

	thetitle[2] = "Profil";
	text[2] = "Herkunft, TEAM, Philosophie & Referenzen";
	
	thetitle[3]="Quo vadis?";
	text[3]="Unternehmensziele und Wegbeschreibung";
	
	thetitle[4]="Dienste";
	text[4]="Dienstleistungen, Animation, Webdesign, Digitale-Produktion, Video, Photo, Bildbearbeitung, Präsentationen, Referenzen";
	
	thetitle[5]="Service";
	text[5]="Ihr Login zu unserem Servicebereich:<BR><BR>Info-Bot, Evit, Shopsystem";
	
	thetitle[6]="HotNews";
	text[6]="Neuigkeiten von und um das TEAM";
	
    thetitle[7]="Impressum";
    text[7]="Alles, was man wissen muss";
	
	var x = 0;
	var xx=100;
	var yy=0;
	var y = 0;
	var showit = 0;

//BROWSER CHECKEN
//----------------------------------------------------------------------------------------------------------

	var NS4	= (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
	var NS6	= (NS4 && document.getElementById) ? 1 : 0;
	if (NS6)
		NS4 = 0;

	var IE = (document.all) ? 1 : 0;
	
	var IE4 = (document.all) ? 1 : 0;
	var IE5 = (IE4 && navigator.appVersion.indexOf("5.") >= 0) ? 1 : 0;


    if ( (NS4) || (IE) || (NS6) ) 
    	{
    	if (NS4) over = document.popDiv
    	if (IE)  over = popDiv.style
	if (NS6) over = document.getElementById('popDiv')

    	document.onmousemove = mouseMove

   	if (NS4) document.captureEvents(Event.MOUSEMOVE)
	}

//----------------------------------------------------------------------------------------------------------
    
    function wtl(txt) 
    	{
    	show(over)
    
	if (NS6)
		{
		var layer=over
		var rng	= document.createRange();
		rng.setStartBefore(layer);
		newContent = rng.createContextualFragment(txt);
		while( layer.hasChildNodes() )
			layer.removeChild( layer.lastChild );
		layer.appendChild(newContent);
		}    
    
    	if (NS4) 
    		{
   		var lll = document.popDiv.document
    		lll.write(txt)
    		lll.close()

    		}
      	else 
      		{
    		if (IE) document.all["popDiv"].innerHTML = txt
    		}
    	}
    	
//----------------------------------------------------------------------------------------------------------
    function show(obj) 
    	{
    	if (NS4) obj.visibility = "show"
    	else if (IE) obj.visibility = "visible"
    	else if (NS6) obj.style.visibility = "visible"
    	}


// FUNKTION: MOUSEOUT
// hideit -> hide
//----------------------------------------------------------------------------------------------------------

    function hide(obj) 
    	{
    	if (NS4) obj.visibility = "hide"
    	else if (IE) obj.visibility = "hidden"
    	else if (NS6) obj.style.visibility = "hidden"
    	}

// EBENE BEWEGEN
//---------------------------------------------------------------------------------------------------------- 

    function moveTo(obj,lx,ly) 
    	{
    	if (NS6) 
    		{
    		obj.style.left	=	lx+"px";
    		obj.style.top	=	ly+"px";
    		return	false;
   		} 
   	else 	{
   	 	obj.left = lx
   	 	obj.top = ly
    		}  	
    	}


// FUNKTION: MOUSEOUT
// hideit -> hide
//----------------------------------------------------------------------------------------------------------
    function hideit() 
    	{
    	if ( (NS4) || (IE) || (NS6) ) 
    		{
		showit = 0;
		hide(over);
    		
    		}
    	}


// EBENE ZUSAMMENSTELLEN
//----------------------------------------------------------------------------------------------------------

    function rpopi(text, title) 
    	{
    	if (title=='HotNews') color='#993300';
    	if (title!='HotNews') color='#003399';
    	
    	txt = "<TABLE WIDTH=150 BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\""+color+"\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD><B><FONT face=\"Arial, Helvetica\" size=-1 color=\"#ffffff\">"+title+"</FONT></B></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=5 CELLSPACING=0 BGCOLOR=\"#ffffff\"><TR><TD><FONT face=\"Arial, Helvetica\" COLOR=\"#000000\" size=-1 ><small>"+text+"</small></FONT></TD></TR></TABLE></TD></TR></TABLE>"
      	wtl(txt);
    	display_it();
    	}

    function popi(i,yn) 
    	{
	yy= yn;
	xx=20;
		
	if (yy==-111) xx=-335;
	if (yy==-244) xx=-335;

	rpopi(text[i],thetitle[i]);
    	}


// ANZEIGEN
//----------------------------------------------------------------------------------------------------------

    function display_it() 
    	{
	if ( (NS4) || (IE) || (NS6) ) 
		{
    		if (showit == 0) 	
    			{
    			moveTo(over,x+xx,y+yy);
    			show(over);
    			showit = 1;
    			}
    		}
    	}


// REAKTION AUF MAUSZEIGERBEWEGUNG
//----------------------------------------------------------------------------------------------------------

    function mouseMove(e) 
    	{
    	if (NS4 || NS6) 	{x=e.pageX; y=e.pageY;}
    	if (IE4) 		{x=event.x; y=event.y;}
    	if (IE5) 		{x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;}

    	if (showit)    		{moveTo(over,x+xx,y+yy);}
	}

  //-->

