$(document).ready(
function () {
$("li").hover(function() {

$(this).attr('class', 'orange');


},
function() {

$(this).attr('class', '');


});
}
);
