$(document).ready(function() {
	
	$('.sub2').parent().children('> a').addClass('arrow');

	$("#mainNav > li").hover(
	
		function(){
			$(this).children('.sub1').show();
			$(this).children('> a').addClass('currentNav');
		},
		
		function(){
			$(this).children('.sub1').hide();
			$(this).children('> a').removeClass('currentNav');
	});
	
	$('#mainNav > li .sub1 > li').hover(
		function(){
			$(this).children('.sub2').show();
		},
		function(){
			$(this).children('.sub2').hide();
	});

});      
