$(document).ready(function() {
	var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent));
	
	if(badBrowser){
		$("#servers").css({"margin-top" : "3px"});
	}
	
	$("ul.top-nav li").hoverIntent(function() { 
		//Following events are applied to the sub-nav itself (moving sub-nav up and down)
		$(this).find("ul.sub-nav").slideDown(100); //Drop down the sub-nav on hover
		
		},
		function (){
			$(this).find("ul.sub-nav").slideUp(100); 
		}
	);
	
	$(".af3_links").css({
		'display' : 'inline-block',
		'padding-bottom' : '5px'
	});
	
	$('table').css({
		'margin-bottom' : '5px'
	});
	
	$('#content p').css({
		'width' : 'auto'
	});
	
	$('#table13').css({
		'margin-left' : '15px'
	});
	
	$(".af3_nov_links:contains('ASK QUESTION')").hide();
	$(".af3_nov_links:contains('FAQ Main Page')").text("Knowledge Base Main Page");
});