jQuery(document).ready( function($) {
	$('#navigation ul li').hover(
		function() {
			$(this).find('.sub-menu').show();
			$(this).find('a:eq').addClass('hover');
		},
		function(){
			$(this).find('.sub-menu').hide();
			$(this).find('a:eq').removeClass('hover');
		}
		
	);
	
	$('.top-menu ul li:first-child a').addClass('left');
	$('#navigation ul li:last-child').addClass('last');
});
