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

function changeBG() {
	active = (active == images.length) ? 0 : active;
	$('#slideBG').attr('src', images[active]);
	$('#slideBG').fadeIn('slow');
	active++;
}

function slideShowBG(){
	$('#slideBG').fadeOut('slow');
	setTimeout('changeBG()',500);
}

$(function() {
	changeBG();
    setInterval( "slideShowBG()", 30000 );
});

