$(document).ready(function(){
		
	$('div.navBlock').hover(
		function() {
			$(this).find('div.innerNavBlock').stop().animate({opacity: 1}, 750);
			$(this).find('div.innerNavImage').stop().animate({height: "98px"}, 500);
		},
		function() {
			$(this).find('div.innerNavBlock').stop().animate({opacity: 0.8}, 250);
			$(this).find('div.innerNavImage').stop().animate({height: "0px"}, 300);
		}
	);
	
	$('a.footerLink').hover(
		function() {
			$(this).stop().animate({color: "#FFFFFF"}, 400);
		},
		function() {
			$(this).stop().animate({color: "#00A1E4"}, 250);
		}
	);
	
	$('a.breadcrumbLink').hover(
		function() {
			$(this).stop().animate({color: "#FFFFFF"}, 400);
		},
		function() {
			$(this).stop().animate({color: "#BEB5C2"}, 250);
		}
	);
	
	$('a.topAssistantLink').hover(
		function() {
			$(this).stop().animate({color: "#FFFFFF"}, 400);
		},
		function() {
			$(this).stop().animate({color: "#BCD5EE"}, 250);
		}
	);
	
});