// JavaScript Documentvar jqN = jQuery.noConflict();function globalNav(){	jqN('#NBC_videoWatch, #nbc_shows, .global_drop').hide()		jqN('ul#A-mast-nav li').hover(function() {		jqN(this).children('.global_drop').show();		jqN(this).addClass('activeNavItem');			}, function() {		jqN(this).children('.global_drop').toggle();		jqN(this).toggleClass('activeNavItem');			});}