var i=0;

function switch_slogan() {
	if (i>slogan.length-1) {
		i=0
	}
	
	$("the_slogan_itself").innerHTML=slogan[i];
	
	i++
	
}