var currentImg = 0;
var timer = null;

$(document).ready(function(){
	$('#fcontent').one('click', function(){ $(this).css('height', '200px'); });

    $('#flash').bind('click', function(){
        showAnimation();
        return false;
    });

	if(page=='start'){
		$('<img src="img/1.jpg" id="tvScreen" />').appendTo('#start');

		$('#realizations, #tvScreen').bind('mouseover', function(){
            clearTimeout(timer);
        });

        $('#realizations, #tvScreen').bind('mouseout', function(){
            timer = setTimeout('startFader()', 5000);
        });

        var so = new SWFObject('gfx/poduszka.swf','poduszka','150','150','5', '#FFFFFF');
		so.addParam("wmode", "transparent");
		so.write('sofaFlash');

        setFader();

        timer = setTimeout('startFader()', 5000);
	}

});

function showAnimation(){
    tb_show('', '/flash.html?TB_iframe=true&height=605&width=780', false);
}

function startFader(){
    if(currentImg==realizations.length-1){
        currentImg = 0;
    }else{
        currentImg++;
    }

    $('#tvScreen, #realizations').fadeOut('slow', function(){
       setFader();
    });

    timer = setTimeout('startFader()', 5000);
}

function setFader(){
    $('#tvScreen').attr('src', 'img/'+realizations[currentImg].img);
    $('#realizations').html('<p><a href="'+realizations[currentImg].url+'">'+realizations[currentImg].urlTitle+'</a></p><p><strong>'+realizations[currentImg].title+'</strong></p>'+realizations[currentImg].text+'');
    
    $('#projectDescription a, #realizations a').bind('click', function(){
        window.open(this.href, 'realiz');
        return false;
    });
    
    $('#tvScreen, #realizations').fadeIn('slow');
}
