var SloganSpeed=5000
var sTimerID
var Slogan
Slogan = "Co-operation is our currency";


function RotateSlogan(){
    if (Slogan == "Co-operation is our currency")
        Slogan = "Straightforward services to help you<br>manage your money better";    
    else
        Slogan = "Co-operation is our currency";
        
	document.getElementById('divSlogan').innerHTML = Slogan;
	sResetTimer();
}


function sResetTimer(){
	clearTimeout(sTimerID);
	sTimerID = setTimeout("RotateSlogan()",SloganSpeed)
}

RotateSlogan();
