function/mouseover event help
Hi im working on a project and im having problems creating a function to increase the font size of three different divisions 25% using "onmouseover" and return to normal using "onmouseout". The three division ids are "objectives","details", and "submission". I've been playing with it for a while and i dont have much but here is the start. Thank you for viewing and any information in the right direction would be greatly appreciated.
<br/>
function divFontSize()
{
document.getElementById("objectives").style.fontsize="125%";
}
<div id="objectives" onmouseover="divFontSize ()" onmouseout="" > </div>
<br/>