$(document).ready(function () {
	$("#main-menu li").each(function () {
		$(this).hover(function () {
			$(this).addClass("hover");
		}, function () {
			$(this).removeClass("hover");
		});
	});
});
