
//JQuery ready is quicker than onload
$(document).ready(
    function() {
        $(".navigation li")
        .mouseover(function() {$(this).addClass("over");})
        .mouseout(function() {$(this).removeClass("over");});
    }
);
