jQuery(function() {	

	// Fade in navigation menu on load
	$('#navigation li:not(#header-login)').hide().fadeIn(1000);
	
	// Animates the scrolling to the top of the Content Tab when the tab title is pressed
	var contentTabPos = $('.content-tabs').position();
	$('.content-header a').click(function() {
		$('html, body').animate({scrollTop: contentTabPos.top - 50}, 'slow');
		return false;
	});
	
	// Animates the scrolling to the top of the page when the Back to Top button is pressed
	$('.back-to-top a').click(function() {
		$('html, body').animate({scrollTop: 0}, 'slow');
		return false;
	});
	
	// Marketing Document Center - Beta	
	$('.info-bubble').hover(function() {
		$(this).animate({opacity: 0.9}, 500);
	}, function() {
		$(this).animate({opacity: 0}, 500);
	});
	
});
