<!-- Your old browser sux
    var y = 0;
    var i = 0;
    var inc = -1
    var sleeptime = 133;
    var boxheight = 57;
    var imageheight = 448;
    function rotatelogo()
        {
            var maxheight = imageheight - boxheight;
            if (!document.getElementById("logo")) return;
            y = y + inc;
            if (y < -maxheight) {
                y = -maxheight;
                inc = -1*inc; 
            }
            if (y > 0) {
                inc = -1*inc;
                y = 0;
            }
            var logo = document.getElementById("logo");
            logo.style.backgroundPosition="0px "+y+"px";
            window.setTimeout("rotatelogo()", sleeptime);
        }

        function mouse(e) {
            if (!e) e = window.event;
            if (typeof e.pageY == 'number') {
                msy = e.pageY - 27;
                logo = document.getElementById("logo");
                logo.style.top = msy+"px";
            }
        }

        function fade(obj_id) {
            var obj = document.getElementById(obj_id);
            i = i + 0.14;
            if (i < 1) {
                obj.style.opacity = i;
                window.setTimeout("fade('" + obj_id + "')", sleeptime);
                return;
            }
            i = 0.0;
        }
 
        function changeStylesheet() {
            var sheet = document.getElementById("colors");
            var buffer = document.getElementById("buffer");
            var bogus = Math.random();
            buffer.href = sheet.href;
            buffer.disable = false;
            sheet.disable = true;
            sheet.href = 
            "http://starship.python.net/crew/marduk/css/random.cgi?" +
            bogus
            sheet.disable = false;
            buffer.disable = true;
        }

        function readurl(myurl) {
    
            var req = false;
            /* if (window.XMLHttpRequest) 
                req = new XMLHttpRequest();
            else if (window.ActiveXObject) {
                req = new ActiveXObject("Microsoft.XMLHTTP");
            } */

	    try {
	        req = new XMLHttpRequest()
	    }
	    catch (e) {
	        try {
		    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
		    try {
		        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		    }
		    catch (e) {
		        req = false;
		    }
		}
	    }
                

           if (req) {
                req.open("GET", myurl, false);
                req.send(null);
                return req.responseText;
            }
            else
               return "";
       }   
       
        window.onload = rotatelogo; 
        document.ondblclick = changeStylesheet;

 -->
