/**
 * 
 * SlideShow for ONNOS BAR web site
 * 
 * (c) 2009 Soft4Good
 * 
*/

function change01() {
	active01 = (active01 == images01.length) ? 0 : active01;
	$('#slide01').attr('src', images01[active01]);
	$('#slide01').fadeIn('slow');
	$('#texto01').html(textos01[active01]);
	$('#texto01').fadeIn('slow');
	active01++;
}

function slideShow01(){
	$('#slide01').fadeOut('slow');
	$('#texto01').fadeOut('slow');
	setTimeout('change01()',500);
}

function change02() {
	active02 = (active02 == images02.length) ? 0 : active02;
	$('#slide02').attr('src', images02[active02]);
	$('#slide02').fadeIn('slow');
	$('#texto02').html(textos02[active02]);
	$('#texto02').fadeIn('slow');
	active02++;
}

function slideShow02(){
	$('#slide02').fadeOut('slow');
	$('#texto02').fadeOut('slow');
	setTimeout('change02()',500);
}

function change03() {
	active03 = (active03 == images03.length) ? 0 : active03;
	$('#slide03').attr('src', images03[active03]);
	$('#slide03').fadeIn('slow');
	$('#texto03').html(textos03[active03]);
	$('#texto03').fadeIn('slow');
	active03++;
}

function slideShow03(){
	$('#slide03').fadeOut('slow');
	$('#texto03').fadeOut('slow');
	setTimeout('change03()',500);
}

$(function() {
	change01();
	change02();
	change03();
    setInterval( "slideShow01()", 14000 );
    setInterval( "slideShow02()", 15000 );
    setInterval( "slideShow03()", 16000 );
});

