jQuery(function($) {
	
	$('#header #navigation ul ul').each(function() {
		$(this).find('li:last').addClass('last');
	});
	
	$('#header #navigation ul li').hover(
		function() {
			if($(this).find('.dropdown:eq(0)').length > 0) {
				$(this).find('.dropdown:eq(0)').show();		
				$(this).find('a:eq(0)').addClass('hover');		
			}
		},
		function() {
			if($(this).find('.dropdown:eq(0)').length > 0) {
				$(this).find('.dropdown:eq(0)').hide();	
				$(this).find('a:eq(0)').removeClass('hover');			
			}
		}	
	);
	
});
