<!--

var isNet4 ;
var isIE4 ;

// Browser-Erkennung
if  ( navigator.appVersion.substring(0, 1) >= 4 ) {
    if  ( navigator.appName == "Microsoft Internet Explorer" ) {
        isIE4  = true }
	else {
		isNet4 = true
	}
}

var counter ;

function motion() {
    if  ( isNet4 ) {
        document.animate.left += 1 ;
        if  ( document.animate.left > window.innerWidth ) {
            document.animate.left = -149 ;
        }
    }
    if  ( isIE4 ) {
        document.all.animate.style.pixelLeft += 1 ;
        if  ( document.all.animate.style.pixelLeft > window.document.body.clientWidth ) {
            document.all.animate.style.pixelLeft = -149 ;
        }
    }
}

// -->
