jQuery(document).ready(function($) {
	$('#header-nav> li').hover(
		function () {  
			//show its submenu  
			$(this).className='hover';
			$('> a', this).className='hover';
			$(this).addClass('hover');  
			$('> a', this).addClass('hover');
		},   
		function () {  
			//hide its submenu  
			$(this).removeClass('hover');
			$('> a', this).removeClass('hover');
		}  
	);
});

