// kernel.js

    function getId(obj)
    {
        return document.getElementById(obj);
    }

    function seleciona(obj)
    {
        return imgPreview(obj.options[obj.selectedIndex].value);
    }

    function imgPreview(valor)
    {
        getId("imgprev").setAttribute('src',valor);
    }

    function selecionaTopo(obj)
    {
        return imgPreviewTopo(obj.options[obj.selectedIndex].value);
    }

    function imgPreviewTopo(valor)
    {
        getId("imgprevtopo").setAttribute('src',valor);
    }

    function manipulaImagens()
    {
        var imagem = new Array();
            imagem[0] = 'imgsrotativas/20080912203514_skate.jpg';
            imagem[1] = 'imgsrotativas/20090308000818_skate.jpg';
            imagem[2] = 'imgsrotativas/20090328200926skate.jpg';
            imagem[3] = 'imgsrotativas/20090714163110skate_.jpg';
            imagem[4] = 'imgsrotativas/Inauguracao_SkatePark_6.JPG';
            imagem[5] = 'imgsrotativas/pe-no-skate_2323_1280x960.jpg';
            imagem[6] = 'imgsrotativas/skate(1)_1cbea.jpg';
        document.getElementById("destaquePrincipal").src = imagem[(Math.ceil(Math.random() * 6))];
    }
