<!--

var ns=(document.layers);
var ie=(document.all);
var w3=(document.getElementById && self.innerWidth && (window.pageXOffset>-1));


var allDivs      = new Array(1);
var documentWidth,documentHeight;

function initAll(){
	if(!ns && !ie && !w3)	return;

	for(dNum=0; dNum<1; ++dNum){
		if(ie)		allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
		else if(ns)	allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
		else if(w3)	allDivs[dNum]=eval('document.getElementById("sDiv'+dNum+'").style');
		moveTo(dNum,0,0);
	}		
}

function moveTo(i,tempx,tempy){
	if (ie){
		documentWidth  =document.body.offsetWidth+document.body.scrollLeft-20;
		randomy=Math.floor(Math.random()*300)+document.body.scrollTop-20;
	}
	else if (ns){
		hideAni();
	}
	else if (w3){
		hideAni();
	}

	if(tempx>-800){
		tempx-=1;
		allDivs[i].left=tempx;
		allDivs[i].top =tempy;
		setTimeout("moveTo("+i+","+tempx+","+tempy+")",10)
	}
	else
		setTimeout("moveTo("+i+",documentWidth-20, randomy)",2000/i+40);
}

function hideAni(){
	window.document.getElementById('sDiv0').style.visibility="hidden";
	moveTo(0,0,0);
}


window.onload=initAll
//-->
///////////////////////////////////////////////////////////
// "Live Clock" script (3.0)
// By Mark Plachetta (astroboy @ zip.com.au)
// http://www.zip.com.au/~astroboy/liveclock/
///////////////////////////////////////////////////////////

var LC_Style=[
	"Arial",			// clock font
	"1",				// font size
	"#FFFFFF",			// font colour
	"",			// background colour
	"",	// html before time
	"",					// html after time
	500	,				// clock width
	0,					// 12(1) or 24(0) hour?
	1,					// update never(0) secondly(1) minutely(2)
	2,					// no date(0) dd/mm/yy(1) mm/dd/yy(2) DDDD MMMM(3) DDDD MMMM YYYY(4)
	0,					// abbreviate days/months yes(1) no(0)
	null				// gmt offset (null to disable)
];

///////////////////////////////////////////////////////////

var LC_IE=(document.all);
var LC_NS=(document.layers);
var LC_N6=(window.sidebar);
var LC_Old=(!LC_IE && !LC_NS && !LC_N6);

var LC_Clocks=new Array();

var LC_DaysOfWeek=[
	["Sonntag","Son"],
	["Montag","Mon"],
	["Dienstag","Die"],
	["Mittwoch","Mit"],
	["Donnerstag","Don"],
	["Freitag","Frei"],
	["Samstag","Sam"]
];

var LC_MonthsOfYear=[
	["January","Jan"],
	["February","Feb"],
	["March","Mar"],
	["April","Apr"],
	["May","Mai"],
	["June","Jun"],
	["July","Jul"],
	["August","Aug"],
	["September","Sep"],
	["October","Okt"],
	["November","Nov"],
	["December","Dez"]
];

var LC_ClockUpdate=[0,1000,60000];

///////////////////////////////////////////////////////////

function LC_CreateClock(c) {
	if(LC_IE||LC_N6){clockTags='<span id="'+c.Name+'" style="width:'+c.Width+'px;background-color:'+c.BackColor+'"></span>'}
	else if(LC_NS){clockTags='<ilayer width="'+c.Width+'" bgColor="'+c.BackColor+'" id="'+c.Name+'Pos"><layer id="'+c.Name+'"></layer></ilayer>'}

	if(!LC_Old){document.write(clockTags)}
	else{LC_UpdateClock(LC_Clocks.length-1)}
}

function LC_InitializeClocks(){
	LC_OtherOnloads();
	if(LC_Old){return}
	for(i=0;i<LC_Clocks.length;i++){
		LC_UpdateClock(i);
		if (LC_Clocks[i].Update) {
			eval('var '+LC_Clocks[i].Name+'=setInterval("LC_UpdateClock("+'+i+'+")",'+LC_ClockUpdate[LC_Clocks[i].Update]+')');
		}
	}
}

function LC_UpdateClock(Clock){
	var c=LC_Clocks[Clock];

	var t=new Date();
	if(!isNaN(c.GMT)){
	var offset=t.getTimezoneOffset();
	if(navigator.appVersion.indexOf('MSIE 3') != -1){offset=offset*(-1)}
		t.setTime(t.getTime()+offset*60000);
		t.setTime(t.getTime()+c.GMT*3600000);
	}
	var day=t.getDay();
	var md=t.getDate();
	var mnth=t.getMonth();
	var hrs=t.getHours();
	var mins=t.getMinutes();
	var secs=t.getSeconds();
	var yr=t.getYear();

	if(yr<1900){yr+=1900}

	if(c.DisplayDate>=3){
		md+="";
		abbrev="th";
		if(md.charAt(md.length-2)!=1){
			var tmp=md.charAt(md.length-1);
			if(tmp==1){abbrev="st"}
			else if(tmp==2){abbrev="nd"}
			else if(tmp==3){abbrev="rd"}
		}
		md+=abbrev;
	}

	var ampm="";
	if(c.Hour12==1){
		ampm="AM";
		if(hrs>=12){ampm="PM"; hrs-=12}
		if(hrs==0){hrs=12}
	}
	if(mins<=9){mins="0"+mins}
	if(secs<=9){secs="0"+secs}

	var html = '<font color="'+c.FntColor+'" face="'+c.FntFace+'" size="'+c.FntSize+'">';
	html+=c.OpenTags;
	html+=hrs+':'+mins;
	if(c.Update==1){html+=':'+secs}
	if(c.Hour12){html+=' '+ampm}
	if(c.DisplayDate==1){html+=' '+md+'/'+(mnth+1)+'/'+yr}
	if(c.DisplayDate==2){html+=' Uhr, am '+(mnth+1)+'.'+md+'.'+yr}
	if(c.DisplayDate>=3){html+='Uhr on '+LC_DaysOfWeek[day][c.Abbreviate]+', '+md+' '+LC_MonthsOfYear[mnth][c.Abbreviate]}
	if(c.DisplayDate>=4){html+=' '+yr}
	html+=c.CloseTags;
	html+='</font>';

	if(LC_NS){
		var l=document.layers[c.Name+"Pos"].document.layers[c.Name].document;
		l.open();
		l.write(html);
		l.close();
	}else if(LC_N6||LC_IE){
		document.getElementById(c.Name).innerHTML=html;
	}else{
		document.write(html);
	}
}

function LiveClock(a,b,c,d,e,f,g,h,i,j,k,l){
	this.Name='LiveClock'+LC_Clocks.length;
	this.FntFace=a||LC_Style[0];
	this.FntSize=b||LC_Style[1];
	this.FntColor=c||LC_Style[2];
	this.BackColor=d||LC_Style[3];
	this.OpenTags=e||LC_Style[4];
	this.CloseTags=f||LC_Style[5];
	this.Width=g||LC_Style[6];
	this.Hour12=h||LC_Style[7];
	this.Update=i||LC_Style[8];
	this.Abbreviate=j||LC_Style[10];
	this.DisplayDate=k||LC_Style[9];
	this.GMT=l||LC_Style[11];
	LC_Clocks[LC_Clocks.length]=this;
	LC_CreateClock(this);
}

///////////////////////////////////////////////////////////

LC_OtherOnloads=(window.onload)?window.onload:new Function;
window.onload=LC_InitializeClocks;
<!--


function jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function openWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function displayStatus(msgStr) { 
  status=msgStr;
  document.returnValue = true;
}

function preloadImages() { 
  var d=document; if(d.images){ if(!d.p) d.p=new Array();
    var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
}

function swapImgRestore() { 
  var i,x,a=document.sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function findObj(n, d) { 
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function swapImage() { 
  var i,j=0,x,a=swapImage.arguments; document.sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=findObj(a[i]))!=null){document.sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function showHideLayers() { 
  var i,p,v,obj,args=showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

function findObj(n, d) { 
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function validateForm() { 
  var i,p,q,nm,test,num,min,max,errors='',args=validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf(' @ ');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' Sie muessen eine richtige Email Adresse angeben.\n';
      } else if (test!='R') {
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (val<min || max<val) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' muss ausgefuellt sein.\n'; }
  } if (errors) alert('Es gibt einen Fehler in den Textfeldern:\n\n'+errors);
  document.returnValue = (errors == '');
}

function StatusMsg(msgStr) { 
  status=msgStr;
  document.returnValue = true;
}


//-->




var ie=(document.all)? true:false;
var ie5 =(navigator.appVersion.indexOf("MSIE 5.0")!=-1)? true:false;
var ieMac=((navigator.appVersion.indexOf("Mac")!=-1) && ie)? true:false;
var isMac=(navigator.appVersion.indexOf("Mac")!=-1)? true:false;
var ns4=(document.layers)? true:false;
var ns6=((document.getElementById) && (!ie))? true:false;
var leng;
var arr;
var leng_int;
var arr_int;
var isMacNs4 = (isMac && (navigator.appVersion.indexOf("4")!=-1))? true:false;

var men1 = new Menu();
var men2 = new Menu();


function showHideLayers() {
  var i,p,v,obj,args=showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function Menu(){
 this.tmr=0;
 this.tmer;
 this.init = init;
 this.sho = sho;
 this.hid = hid;
 this.timer = timer;
 this.kill = kill;
 this.clipVert=0;
 this.pop = pop;
}

function stt(){
 arr= new Array("lay1","lay2");
 leng=arr.length;
}

function init(lay,anchlay,ieincrX,ieIncrY,nsincrX,nsincrY,ns6IncrX,ns6IncrY){
 stt();
 anchlay = (ie)? anchlay:((ns6)?  anchlay : "ns"+anchlay);
 var e = (ie)? document.all[lay].style : ((ns6)? document.getElementById(lay).style : eval("document."+lay));
 var f = (ie)? document.all[anchlay] : ((ns6)? document.getElementById(anchlay) : eval("document."+anchlay));
 e.left = (ie)? f.offsetLeft-(ieincrX) : ((ns6)? f.offsetLeft-(ns6IncrX) : f.pageX-(nsincrX));
 e.top = (ie)? f.offsetTop-(ieIncrY) : ((ns6)? f.offsetTop-(ns6IncrY) : f.pageY-(nsincrY));
}

function sho(lay, clipVert){
 killlays();
 var e = (ie)? document.all[lay].style : ((ns6)? document.getElementById(lay).style : eval("document."+lay));
 e.visibility='visible';
 clipAll(e, clipVert);
 expand(lay);
}

function hid(lay){
// alert("hid");
  var e = (ie)? document.all[lay].style : ((ns6)? document.getElementById(lay).style : document.layers[lay]);
  e.visibility='hidden';
}

function timer(lay){
var timout=50;
 this.tmr = setTimeout('hid("'+ lay +'")',timout);
}

function kill(){
 clearTimeout(this.tmr);
}

function killlays(){
 for(i=0;i<leng;i++){
//  alert(arr[i]);
  e = (ie)? document.all[arr[i]].style : ((ns6)? document.getElementById(arr[i]).style : eval("document."+arr[i]));
  e.visibility='hidden';
  }
return;
}

function kill_ints(){
 for(i=0;i<leng_int;i++){
  hid(arr_int[i]);
  }
}

function test(){
 test=(ns4)? 'ns4' : ((ns6)? 'ns6' : 'ie');
 alert(test);
}

function clipBy(obj,t,r,b,l){
// alert("top: "+clipValues(obj,'t'));
 if(ns4){
  obj.clip.top = clipValues(obj,'t') + t;
  obj.clip.right = clipValues(obj, 'r') + r;
  obj.clip.bottom = clipValues(obj, 'b') + b;
  obj.clip.left = clipValues(obj, 'l') + l;
  }
  else if(ie) obj.clip = "rect("+(this.clipValues(obj,'t')+t)+"px "+(this.clipValues(obj,'r')+r)+"px "+Number(this.clipValues(obj,'b')+b)+"px "+Number(this.clipValues(obj,'l')+l)+"px)";
// alert("top: "+clipValues(obj,'t'));
}

function clipValues(obj, prpty){
 if(ns4){
   if(prpty=="t") return obj.clip.top;
   if(prpty=="r") return obj.clip.right;
   if(prpty=="b") return obj.clip.bottom;
   if(prpty=="l") return obj.clip.left;
   }
  else if(ie){
      var clipv = obj.clip.split("rect(")[1].split(")")[0].split("px");
      if (prpty=="t") return Number(clipv[0]);
      if (prpty=="r") return Number(clipv[1]);
      if (prpty=="b") return Number(clipv[2]);
      if (prpty=="l") return Number(clipv[3]);
   }
}

function clipTo(obj,t,r,b,l){
 if(ns4){
  obj.clip.top = t;
  obj.clip.right = r;
  obj.clip.bottom = b;
  obj.clip.left = l;
  }
  else if(ie) obj.clip = "rect("+t+"px "+r+"px "+b+"px "+l+"px)";
}

function clipAll(obj, clipVert){
 if(ns4){
   obj.clip.top = clipVert;
   obj.clip.right = 180;
   obj.clip.bottom = 0;
   obj.clip.left = 0;
   }
   else if(ie)  obj.clip = "rect("+clipVert+"px, 180px, 160px, 0px)";
 return;
}

function expand(lay){
 var e = (ie)? document.all[lay].style : ((ns6)? document.getElementById(lay).style : eval("document."+lay));
 if(clipValues(e,'t')>0){
// alert("top: "+clipValues(e,'t'));
  clipBy(e,-14,0,0,0);
  setTimeout('expand("'+ lay +'")',1);
  }
}

function pop(lay){
 var e = (ie)? document.all[lay].style : ((ns6)? document.getElementById(lay).style : eval("document."+lay));
 e.visibility='visible';
}

function pop_int(lay){
 kill_ints();
 pop(lay);
}

function kill_hilite(){
var indx=0;
var arg_array = kill_hilite.arguments;
var ileng = arg_array.length;
var iswaps = ileng/2;
for(i=0;i<iswaps;i++){
 if(document.images){
  document.images[arg_array[indx++]].src=arg_array[indx++];
  }
 }
}

var navDOM="";
function setAll(){
 markW = 90;       // pixels wide
 markH = 40;       // pixels high
 markX = 99;      // percent right
 markY = 99;      // percent down
 markRefresh = 50; // milliseconds

 wMark = (ie)? document.all["waterMark"].style : ((ns6)? document.getElementById("waterMark").style : eval("document.waterMark"));//document.all[""].style;
 wMark.width = markW;
 wMark.height = markH;
 navDOM = (window.innerHeight)? true:false; // Nav DOM flag
// alert(navDOM);
}
function setVals() {
barW = 0; // scrollbar compensation for PC Nav
 barH = 0;
 if (navDOM) {
  if (document.height > innerHeight) barW = 20;
  if (document.width > innerWidth) barH = 20;
  } else {
  innerWidth = document.body.clientWidth;
  innerHeight = document.body.clientHeight;
  }
 posX = ((innerWidth - markW)-barW) * (markX/100);
 posY = ((innerHeight - markH)-barH) * (markY/100);
 }

function wRefresh() {
 wMark.left = posX + ((navDOM)? pageXOffset-70 : document.body.scrollLeft-60);
 wMark.top = posY + ((navDOM)? pageYOffset+30 : document.body.scrollTop+20);
 }

function markMe() {
 setAll();
 setVals();
 window.onresize=setVals;
 markID = setInterval("wRefresh()",markRefresh);
 }

function write2lay(lay, txt) {
 lay=(ns4)? 'ns'+lay:lay;
 if (ns4) {
  document.layers[lay].document.open();
  document.layers[lay].document.write(txt);
  document.layers[lay].document.close();
  }
  else if (ie) {
   document.all(lay).innerHTML = txt;
   }
  else if (ns6){
   document.getElementById(lay).innerHTML = txt;
   }
}

function img_load(){
 var arg_array = img_load.arguments;
 for(i=0;i<arg_array.length;i++){
  img_list[parseInt(arg_array[i])] = new Image();
  img_list[arg_array[i]].src = img_array[arg_array[i]];
 }
}
function changeBG(){
		bgColor = "yellow";
        document.body.kontakt(bgColor);

}

/*
 DHTML Menu version 3.3.19
 Written by Andy Woolley
 Copyright 2002 (c) Milonic Solutions. All Rights Reserved.
 Plase vist http://www.milonic.co.uk/menu or e-mail menu3 @ milonic.com
 You may use this menu on your web site free of charge as long as you place prominent links to http://www.milonic.co.uk/menu and
 your inform us of your intentions with your URL AND ALL copyright notices remain in place in all files including your home page
 Comercial support contracts are available on request if you cannot comply with the above rules.
 This script featured on Dynamic Drive (http://www.dynamicdrive.com)
 */

//The following line is critical for menu operation, and MUST APPEAR ONLY ONCE. If you have more than one menu_array.js file rem out this line in subsequent files
menunum=0;menus=new Array();_d=document;function addmenu(){menunum++;menus[menunum]=menu;}function dumpmenus(){mt="<script language=javascript>";for(a=1;a<menus.length;a++){mt+=" menu"+a+"=menus["+a+"];"}mt+="<\/script>";_d.write(mt)}
//Please leave the above line intact. The above also needs to be enabled if it not already enabled unless this file is part of a multi pack.



////////////////////////////////////
// Editable properties START here //
////////////////////////////////////

// Special effect string for IE5.5 or above please visit http://www.milonic.co.uk/menu/filters_sample.php for more filters
if(navigator.appVersion.indexOf("MSIE 6.0")>0)
{
	effect = "Fade(duration=0.6);Alpha(style=0,opacity=100);"
}
else
{
	effect = "Shadow(color='#66CCFF', Direction=135, Strength=0)" // Stop IE5.5 bug when using more than one filter
}


timegap=500				// The time delay for menus to remain visible
followspeed=5			// Follow Scrolling speed
followrate=70			// Follow Scrolling Rate
suboffset_top=100;		// Sub menu offset Top position 
suboffset_left=100;		// Sub menu offset Left position

style1=[				// style1 is an array of properties. You can have as many property arrays as you need. This means that menus can have their own style.
"#FFFFFF",			    // Mouse Off Font Color
"#66CCFF",				// Mouse Off Background Color
"ffebdc",				// Mouse On Font Color
"66CCFF",				// Mouse On Background Color
"#66CCFF",				// Menu Border Color 
10,						// Font Size in pixels
"normal",				// Font Style (italic or normal)
"bold",					// Font Weight (bold or normal)
"Verdana, Arial",		// Font Name
2,						// Menu Item Padding
"images/1_arrow.gif",   // Sub Menu Image (Leave this blank if not needed)
"#66CCFF",						// 3D Border & Separator bar
"#66CCFF",						// 3D High Color
"#66CCFF",						// 3D Low Color
"",				// Current Page Item Font Color (leave this blank to disable)
"",					// Current Page Item Background Color (leave this blank to disable)
"",	// Top Bar image (Leave this blank to disable)
"",				// Menu Header Font Color (Leave blank if headers are not needed)
"",				// Menu Header Background Color (Leave blank if headers are not needed)
]



addmenu(menu=[		// This is the array that contains your menu properties and details
"mainmenu",			// Menu Name - This is needed in order for the menu to be called
90,					// Menu Top - The Top position of the menu in pixels
20,				    // Menu Left - The Left position of the menu in pixels
,					// Menu Width - Menus width in pixels
0,					// Menu Border Width 
,					// Screen Position - here you can use "center;left;right;middle;top;bottom" or a combination of "center:middle"
style1,				// Properties Array - this is set higher up, as above
1,					// Always Visible - allows the menu item to be visible at all time (1=on/0=off)
"left",				// Alignment - sets the menu elements text alignment, values valid here are: left, right or center
effect,				// Filter - Text variable for setting transitional effects on menu activation - see above for more info
,					// Follow Scrolling - Tells the menu item to follow the user down the screen (visible at all times) (1=on/0=off)
1, 					// Horizontal Menu - Tells the menu to become horizontal instead of top to bottom style (1=on/0=off)
,					// Keep Alive - Keeps the menu visible until the user moves over another menu or clicks elsewhere on the page (1=on/0=off)
,					// Position of TOP sub image left:center:right
,					// Set the Overall Width of Horizontal Menu to 100% and height to the specified amount (Leave blank to disable)
,					// Right To Left - Used in Hebrew for example. (1=on/0=off)
,					// Open the Menus OnClick - leave blank for OnMouseover (1=on/0=off)
,					// ID of the div you want to hide on MouseOver (useful for hiding form elements)
,					// Reserved for future use
,					// Reserved for future use
,					// Reserved for future use
,"<img src=images/mg0.gif border=0>","http://www.weistedv.com",,"Zurueck zur Homepage",1 // "Description Text", "URL", "Alternate URL", "Status", "Separator Bar"
,"<img src=images/mg4.gif border=0>","show-menu=ueber",,"",1
,"<img src=images/mg1.gif border=0>","show-menu=loesungen",,"",1
,"<img src=images/mg2.gif border=0>","show-menu=support",,"",1
,"<img src=images/mg3.gif border=0>","show-menu=kontakt",,"",1
])

	
	addmenu(menu=["ueber",
	,,90,0,"",style1,,"left",effect,,,,,,,,,,,,
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Wir","http://www.weistedv.com/ueber/team/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Geschichte","http://www.weistedv.com/ueber/geschichte/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Standort","http://www.weistedv.com/ueber/standort/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Partner","http://www.weistedv.com/ueber/partner/",,,1
	])


	addmenu(menu=["loesungen",
	,,185,0,"",style1,,"left",effect,,,,,,,,,,,,
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Netzwerktechnik","http://www.weistedv.com/loesungen/netzwerktechnik/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Datenbankprogrammierung","http://www.weistedv.com/loesungen/datenbankprogrammierung/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Reperaturservice","http://www.weistedv.com/loesungen/reperaturservice/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;ISDN Anlagen","http://www.weistedv.com/loesungen/isdnanlagen/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Webdesign","http://www.weistedv.com/loesungen/webdesign/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Hosting","http://www.weistedv.com/loesungen/hosting/",,,1
	])
	
	addmenu(menu=["support",,,90,0,,style1,0,"left",effect,0,,,,,,,,,,,
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Website", "http://www.weistedv.com/support/website/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;E-Mail", "http://www.weistedv.com/support/email/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Downloads", "http://www.weistedv.com/support/downloads/",,,1
	])
	
	addmenu(menu=["kontakt",
	,,100,0,"",style1,,"",effect,,,,,,,,,,,,
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Anfahrt", "http://www.weistedv.com/kontakt/anfahrt/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;Telefon / Fax", "http://www.weistedv.com/kontakt/telefon/",,,1
	,"<img src=images/1_bullet_hl.gif border=0>&nbsp;E-Mail", "http://www.weistedv.com/kontakt/email",,,1
	])
	
	
	

dumpmenus()