var data = [
	["mainImageLFL.jpg"],
	["mainImageHANLAW.jpg"],
];

var active = true;

function switchBanner() {
	if (active) {
		$("#img0").fadeOut(1000);
		$("#img1").fadeIn(1000);
		$("#txt0").fadeOut(1000);
		$("#txt1").fadeIn(1000);
	}
	else {
		$("#img1").fadeOut(1000);
		$("#img0").fadeIn(1000);
		$("#txt1").fadeOut(1000);
		$("#txt0").fadeIn(1000);
	}
	active = !active;
}

$(document).ready(function() {
	setInterval(switchBanner, 10000);
});

