Basically I want to make this:
About
Into this when the page loads:
&l
This should work:
window.onload = function() { document.getElementById('about').className = 'expand'; };
Or if you're using jQuery:
$(function() { $('#about').addClass('expand'); });