// JavaScript Document
var content = new DHTMLScroller('content', '');

	with (content)
	{
     divs[0] = new ScrDiv('contentOuter', '7', '25', '320', '287', 2);
     divs[1] = new ScrDiv('contentBar', '308', '205', '12', '250', 2);
     divs[2] = new ScrDiv('contentThumb', '308', '', '10', '', 1);
     page.minW = 400;
	 page.minH = 300;
	 onload = function() { 
	 	var lm = getSty('loadMessage');
		if (lm) lm.visibility = 'hidden';
		MM_preloadImages('bilder/nav/service.gif','bilder/nav/referenzen.gif','bilder/nav/kontakt.gif','bilder/nav/links.gif','bilder/nav/impressum.gif');
	 }
	}

	document.onmousewheel = function(evt)
	{
	 evt=evt?evt:window.event;
	 // You have to manually specify a scroller name in here (like 'content').
	 if (evt.wheelDelta) content.scrollBy(evt.wheelDelta / -3);
	 return false;
	}

