$(document).ready(function() {
	$('#header > ul > li:first-child').addClass('first-child');
	$('#header > ul > li').hover(function() {
		$(this).addClass('hover');
		
	}, function() {
		$(this).removeClass('hover');
	});
});