$( document ).ready( function(){
	$('ul#navMain li').hover(
		function(){
			
			$(two).removeClass('current');
			var two = $(this).find('a:first');
			$(two).addClass('on');
			
			var sub = $(this).find('.sub');
			if( sub.length == 0 ) return;
			
			sub.show();
			$(this).addClass('hover');
		},
		function(){
			var two = $(this).find('a:first');
			$(two).removeClass('on');
			
			var sub = $(this).find('.sub');
			sub.hide();
			$(this).removeClass('hover');
		}
	);
});




