$(function(){
	//dropdown menu
	$('.navbar .NavItem').hover(function(){
		$subNav = $(this).children('.navWrapper1');
		$subNav.stop().show();
		$(this).children().addClass('currently');
	}, function(){
		$subNav = $(this).children('.navWrapper1');
		$subNav.stop().hide();
		$(this).children('span').removeClass('currently');
	});
	$('.SubItem1st').hover(function(){
		$subNav = $(this).children('.navWrapper2');
		$subNav.stop().show();
		$(this).children('span').addClass('currently');
	}, function(){
		$subNav = $(this).children('.navWrapper2');
		$subNav.stop().hide();
		$(this).children('span').removeClass('currently');
	});
	$('.SubItem2nd').hover(function(){
		$subNav = $(this).children('.navWrapper3');
		$subNav.stop().show();
		$(this).children('span').addClass('currently');
		//alert($subNav.css('color'));
	}, function(){
		$subNav = $(this).children('.navWrapper3');
		$subNav.stop().hide();
		$(this).children('span').removeClass('currently');
	});
});