function showObject(object) {
        object.visibility = VISIBLE;
    }
    function hideObject(object) {
        object.visibility = HIDDEN;
    }
    function slidepicture(from, to) {
            if (from < to) {
                website.top = (from += 10);
                setTimeout('slidepicture(' + from + ',' + to + ')', 75);
            }
            else initObjects();
    }
    function rotateObjects() {
            for (var i = 0; i < pos.length; i++) {
                pos[i] += inc; objects[i].visibility = 'visible';
                objects[i].left = (r * Math.cos(pos[i])) + xoff
                objects[i].top = (r * Math.sin(pos[i])) + yoff;
            }
        rotateTimer = setTimeout("rotateObjects()", 75);
    }
     function initObjects() {
        objects = new Array(circle5, circle6, circle7, circle4, circle1, circle2, circle3, circle8);
        pos = new Array();
        pos[0] = 0;
            for (var i = 1; i < objects.length; i++) {
                pos[i] = parseFloat(pos[i - 1] + ((2 * pi) / objects.length));
            }
        rotateObjects();
    }
// Variables for rotating images/text //
    var objects;
    var pos;
    var r = 240;        // radius
    var xoff = ((screen.width) / 2) - 65;     // horizontal position
    var yoff = ((screen.height) / 2) - 125;     // vertical position
    var pi = Math.PI;   
    var inc = pi / 400; // the higher the number the slower the speed of rotation
    var objects;        
    var pos;      
