var defaultTimer = 10000;
RotateSlogans ();

function RotateSlogans () {
	total = slogan.length;
	interval = setInterval ("DoTransition(" + active_slogan + ");", defaultTimer);
}
													
function DoTransition () {
	if (active_slogan == total) {
		active_slogan = 0;
	}
	
    jQuery("companySlogan").fadeOut("slow");
    intvl = setTimeout ('document.getElementById("companySlogan").innerHTML="'+slogan[active_slogan]+'";jQuery("companySlogan").fadeIn("slow");',2000);
    active_slogan++;
}
