/*
 * SWFObject: Flash Player Aufruf
 */
var flashorize = new Class ({
	initialize: function(options)
	{
		if($defined(soBottom)){
			soBottom.write("bottomimg");
		}
		if($defined(soRight)){
			soRight.write("headerimg");
		}
	}
 });

/*
 * Scroll-Funktion
 */
var px = 10;//mehr=schneller
var timer;
function scrollDenDiv(val){
clearTimeout(timer);
d=document.getElementById('contentelements')
y=d.scrollTop;
if(val==1)y-=px;
if(val==2)y+=px;
if(y<=d.scrollHeight-d.offsetHeight+px&&y>=0-px){
d.scrollTop=y;
timer=setTimeout('scrollDenDiv('+val+')',50);
}
if(y<0||y>d.scrollHeight-d.offsetHeight){
clearTimeout(timer);
}
}




