I'm trying to have a sentence at the base of my site that says how many langauges our members speak. I simply want that sentence to change from English to whichever language is hovered over. Can someone help me out? Thanks!
<style>
.languages {
font-size: 70%;
text-decoration:none;
}
.languages a{
text-decoration:none;
margin-left:2px;
margin-right:2px;
background-color:#ffffff;
border: white solid 2px;
padding: 2px 4px;
}
.languages a:hover{
background-color:#fff000;
border: gray solid 2px;
}
.default{
font-size: 80%;
font-weight:bold;
letter-spacing:1px;
font-family:arial;
}
</style>
<center>
<span class="default">Our players represent a variety of backgrounds, countries, and languages.</span> <br><br>
<span class="languages">
<a href="#" id="English" title="Our players represent a variety of backgrounds, countries, and languages.">English</a> •
<a href="#" id="Chinese" title="我們的球員代表了各種背景,國家和語言。">中文</a> •
<a href="#" id="Spanish" title="Nuestros jugadores representan una variedad de fondos, países e idiomas.">Español</a> •
<a href="#" id="Russian" title="Наши игроки представляют различные фоны, стран и языков.">русский</a> •
<a href="#" id="German" title="Unsere Spieler repräsentieren eine Vielzahl von Hintergründen, Ländern und Sprachen.">Deutsche</a> •
<a href="#" id="Ukrainian" title="Наші гравці представляють різні фони, країн і мов.">український</a> •
<a href="#" id="Korean" title="플레이어는 다양한 배경, 국가 및 언어를 대표합니다.">한국어</a>
</span>
</center>