$(document).ready(function() {
    $("#header-nav ul li a").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
	})
});