 

       $(window).ready(function() {
				//naigation drop down effect
			function navhoverOver() {
			    $(this).find("ul").fadeIn('fast');
			
			}
			
			function navhoverOut() {
			    $(this).find("ul").fadeOut('fast', function() {
			        $(this).hide();
			    });
			}
			var config = {
			    sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
			    interval: 100, // number = milliseconds for onMouseOver polling interval
			    over: navhoverOver, // function = onMouseOver callback (REQUIRED)
			    timeout: 400, // number = milliseconds delay before onMouseOut
			    out: navhoverOut // function = onMouseOut callback (REQUIRED)
			};
			//$("#navbar li ul").css({ 'opacity': '0' });
			$("#navbar li").hoverIntent(config);
			
			$('#container').fadeIn('slow')
	
	});
       //this is for the numentum pd page tech pop up
       function closelightbox(){
    		
    		$('#nucon').fadeOut('slow');
    		$('#pdpTabsDiv').fadeIn('slow');
    		
    	}
       
       function OpenWindowSRC(url, name, width, height)
       {
       	popupWin = window.open(url, name, 'status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=no,width=' + width +',height=' + height + ',screenX=0,screenY=0,top=0,left=0')
       }

       
       
