function linksFlash() {
document.getElementById("home21").style.color = "#5882C1";
document.getElementById("home21").style.background = "#FFFFFF";
document.getElementById("home22").style.color = "#FFFFFF";
document.getElementById("home22").style.background = "#5882C1";
setTimeout ( "flashLinks()", 750 );
}
function flashLinks() {
document.getElementById("home22").style.color = "#5882C1";
document.getElementById("home22").style.background = "#FFFFFF";
document.getElementById("home21").style.color = "#FFFFFF";
document.getElementById("home21").style.background = "#5882C1";
setTimeout ( "linksFlash()", 750 );
}