var slide_emotive=new Array();
var slide_simple=new Array();
var current_slide_emotive=0;
var current_slide_simple=0;
var slide_timeout=10; // Sekunden

function slideEmotive() {
    var next=current_slide_emotive+1;
    if (!slide_emotive[next]) next=0;
    
    if (next!=current_slide_emotive) {
        slide_emotive[current_slide_emotive].fade('out');
        slide_emotive[next].fade('in');
    }
    current_slide_emotive=next;
    setTimeout('slideEmotive()',slide_timeout*1000);
}

function slideSimple() {
    var next=current_slide_simple+1;
    if (!slide_simple[next]) next=0;
    
    if (next!=current_slide_simple) {
        slide_simple[current_slide_simple].fade('out');
        slide_simple[next].fade('in');
    }
    current_slide_simple=next;
    setTimeout('slideSimple()',slide_timeout*1000);
}

window.addEvent("domready", function() {
    $$('div.service div.downloads div.year').setStyle('cursor','pointer');
    $$('div.service div.downloads div.year').addEvent('click',function() {
        $$('div.service div.downloads ul.year_ul').slide('out');;
        if ($(this.get('id')+'_ul')) $(this.get('id')+'_ul').slide('in');
    });
    $$('div.service div.downloads ul.year_ul').slide('hide');;
    $$('div.service div.downloads ul.selected').slide('show');;
    
    
    slide_emotive=$$('div.content_wrapper div.emotive p');
    slide_simple=$$('div.content_wrapper div.service div.service_img p');
    
    if (slide_emotive.length>0) {
        slide_emotive.fade('hide');
        slide_emotive.setStyle('display','block');
        slide_emotive[current_slide_emotive].fade('show');
        setTimeout('slideEmotive()',slide_timeout*1000);
    }
    if (slide_simple.length>0) {
        slide_simple.fade('hide');
        slide_simple.setStyle('display','block');
        slide_simple[current_slide_simple].fade('show');
        setTimeout('slideSimple()',slide_timeout*1000);
    }
});
