var box = {};

function loadVideo(id){
    var myswf = new Swiff('http://www.youtube.com/v/'+id+'&hl=es&fs=1&rel=0&color1=0x5d1719&color2=0xcd311b',{width:567, height:450});
    $('videodiv').adopt(myswf);
}

function domloaded(){
    if ($('info') != null){
        var info = new Fx.Style('info','opacity').set(0);
        $('verinfo').addEvent('mouseover', function(){ info.start(1); });
        $$('#cabecera .foto').addEvent('mouseover', function(){ if ($('info').getStyle('visibility') == 'visible') info.start(0); });
    }

    if ($('apartados') != null){
        $('apartados').getElements('h2').addEvent('click', function(){
            var actual = this.parentNode; var old = $$('li.ver')[0];
            if (actual.className != 'ver'){
                old.className = ''; actual.className = 'ver';
                eff =  new Fx.Style($(old).getElements('.datos')[0],'opacity').start(1,0);
                eff2 = new Fx.Style($(actual).getElements('.datos')[0],'opacity').start(0,1);
            }
        });
    }

    if ($('galeria') != null){
        box = new MultiBox('fot', {descClassName:'fot_desc', useOverlay:true});
    }

    if (typeof(youtubeID) != 'undefined' && youtubeID != '') loadVideo(youtubeID);

    $$('a.blank').each(function(e){ e.setAttribute('target','_blank'); });
}