
function mouseover()
{
document.getElementById("Blog").style.fontSize='25px';
document.getElementById("Blog").style.backgroundColor='#C00';
}
function mouseout()
{
document.getElementById("Blog").style.fontSize='20px';
document.getElementById("Blog").style.backgroundColor='#999999';
}


function mouseover3()
{
document.getElementById("About").style.fontSize='25px';
document.getElementById("About").style.backgroundColor='#06F';
}
function mouseout3()
{
document.getElementById("About").style.fontSize='20px';
document.getElementById("About").style.backgroundColor='#999999';
}

