$(document).ready(function(){
	$(".topNav").each(function(){
				if(!$.browser.msie){
					var prev_text_shadow = $(this).find('.topNavLink').css('text-shadow');	
				}
								
				if($(this).hasClass('hasChildren')){
						$(this).hover(function(){
						$(this).css('background','url(/media/nbpharma/img/navItemsTop.png) 0 0 no-repeat');

						$(this).find('.topNavLink').css('color','#002132');
						$(this).find('.topNavLink').css('text-shadow','none');
						$(this).find('.subNavMenuWrapper').stop().show();
						$(this).find('.subNavMenuBottom').stop().show();
					},
					function(){
						$(this).css('background','none');
						
						$(this).find('.topNavLink').css('textshadow',prev_text_shadow);
						$(this).find('.topNavLink').css('color','#fff');
						$(this).find('.subNavMenuWrapper').stop().hide();
						$(this).find('.subNavMenuBottom').stop().hide();
					});	

				}
				else{
					$(this).hover(function(){
						$(this).css('background','url(/media/nbpharma/img/navItemsTopHasNoChildren.png) 0 -0px no-repeat');

						$(this).find('.topNavLink').css('color','#002132');
						$(this).find('.topNavLink').css('text-shadow','none');
					},
					function(){
						$(this).css('background','none');
						
						$(this).find('.topNavLink').css('textshadow',prev_text_shadow);
						$(this).find('.topNavLink').css('color','#fff');
					});
				}
		
		
	});
});

$(document).ready(function(){
	$('.subNavMenu a').each(function(){
		$(this).hover(function(){
			$(this).stop().animate({
					'color':'#FFF',
					'background-color': '#002132'
				},250);
		},function(){
			$(this).stop().animate({
					'color':'#002132',
					'background-color': '#FFF'
				},250);
		});
	});
});
