window.onload = function() {
        
    var i = 0;
    var slideshow = [ '8', '6', '3' ];
    var img = new Image();
    for(var j = 0; j < slideshow.length; j++) {
        img.src = '/img/screenshots/' + slideshow[j] + '.jpg';
    }
    
    var timer = setInterval(function() {
        $('slideshow_box').style.background = 'url(\'img/screenshots/' + slideshow[i] + '.jpg\')';
        $('slideshow_box').opacity(10, null);
        i++;
        if(i == 3) {
            i = 1;
        }
        $('slideshow').style.background = 'url(\'img/screenshots/' + slideshow[i] + '.jpg\')';
        $('slideshow_box').opacity(0, 60);
    }, 7000);
    
    var j = 30;
    var k = parseInt('-' + $('saying_container').offsetHeight);
    
    var timer_2 = setInterval(function() {
        j--;
        if(j < k) {
            j = 270;
        }
        $('saying_container').style.marginTop = j + 'px';
    }, 80);
    
    $('slideshow_box').listen('click', function() {
	window.location = '/sites_' + slideshow[i] + '.html';
    });
    
}
