images = new Array(
		// image, web, [comment]
		new Array( "frosta", "http://www.frosta.pl" ),
		new Array( "klimat_solec", "http://www.klimat.eu" ),
		new Array( "lzachem", "http://www.zachem.com.pl" ),
		new Array( "mwik", "http://www.mwik.bydgoszcz.pl" ),
		new Array( "remondis", "http://www.remondis.pl" ),
		new Array( "drobex", "http://www.google.com"),
		new Array( "ako", "http://www.ako.com.pl" ),
		new Array( "gala", "http://www.galameble.com" )
);

patronage_idx = 0;

function showLogo() {
	image = images[ patronage_idx++ ];
	
	if ( patronage_idx >= images.length )
		patronage_idx = 0;
	
	img = "patronage/" + image[ 0 ] + ".jpg";
	url = image[ 1 ];
	html = "";
	
	if ( image.length > 2 )
		html = image[ 2 ] + "<br/><br/>";
	
	html += "<a href=\"" + url + "\"><img src=\"" + img + "\"/></a>"
	
	document.getElementById( "patronage_logo" ).innerHTML = html;
	setTimeout( showLogo, 3000 );
}
