//Add mouse hover class
$(document).ready(function(){
  $("#navLinks .linkDepth-0 li").not("#navLinks .linkDepth-1 li").mouseenter(function() {
			if($(this).children('ul').length !==0){ 				
				if($(this).children('ul').hasClass("jqNavSel") && $(this).children('ul').is(":visible")){
					$(this).children('ul').stop(true, true);
				} else {
								
					var oldHeight = $(this).children('ul').css('height');
					$(this).children('ul').stop(true, true);
					$("#navLinks .linkDepth-1").not("#navLinks .linkDepth-1 li").hide();	  
					//$(this).children('ul').css({"height":"0px"});
					$(this).children('ul').show();
					//$(this).children('ul').stop(true, true).animate({ height:oldHeight}, 200, 'swing', function(){});
					$(this).children('ul').addClass("jqNavSel");
				}
				
			} else {
				$("#navLinks .linkDepth-1").not("#navLinks .linkDepth-1 li").hide();	  
			}
	  }).mouseleave(function() {
		if($(this).children('ul').length !==0 && $(this).children('ul').hasClass("jqNavSel")){ 		
			$(this).children('ul').delay(1000).hide(function(){ $(this).children('ul').removeClass("jqNavSel"); });	
		}
	 });

	//Fix IE opacity for all selected items
	$(".opacityAnim").css({opacity:0.7});
	//Animate opacity
	$(".opacityAnim").mouseenter(function() {
		$(this).stop(true, true).animate({opacity:1});
	}).mouseleave(function() {
		$(this).stop(true, true).animate({opacity:0.7});
	});
});


