//alert('loaded nav.js');
$(document).ready(function() {
	var navItem = "ul.firstLevel > li";
	var subNavItem = "ul.subNav li";
	if($.browser.msie) {
		$(subNavItem).addClass('white');
	}
	$(navItem).hover(
		function() {
			var hasSubNav = $(this).children('ul').length == 1;
			var hoverClass = hasSubNav ? 'hoverdown' : 'hoverright';
			$(this).find(":nth-child(1)").addClass(hoverClass); 
			if($.browser.msie) {
				$(this).find(":nth-child(2)").show();
			}
			else {
				$(this).find(":nth-child(2)").fadeIn();
			}
		},
		function() {
			var hasSubNav = $(this).children('ul').length == 1;
			var hoverClass = hasSubNav ? 'hoverdown' : 'hoverright';
			$(this).find(":nth-child(1)").removeClass(hoverClass); 
			if($.browser.msie) {
				$(this).find(":nth-child(2)").hide();
			}
			else {
				$(this).find(":nth-child(2)").fadeOut();
			}
		}
	);
	$(subNavItem).hover(
		function(){$(this).addClass('hover');},
		function(){$(this).removeClass('hover')}
	);
});