

$(document).ready(function() {
	
    $('#sidebarNav a').hover(
		function () {
			if ( $(this).is('.notcurrent') ) {			
			  $(this).stop().animate({color:'#EA673D'}, 150);		  
			}		
		},
		function () {
			if ( $(this).is('.notcurrent') ) {			
				$(this).stop().animate({color:'#2C334C'}, 150);			
			}		
    	}
	);	
	
    $('#footermenu_home a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#FFF'}, 150);
    	}
	);

    $('#footermenu_contact a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#FFF'}, 150);
    	}
	);

    $('#footermenu_admin a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#FFF'}, 150);
    	}
	);

    $('#footermenu_terms a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#FFF'}, 150);
    	}
	);

    $('#footermenu_policy a').hover(
		function () {
			$(this).stop().animate({color:'#03F'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#FFF'}, 150);
    	}
	);

    $('#content a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#03F'}, 150);
    	}
	);

    $('#headermenu_jira a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#333333'}, 150);
    	}
	);

    $('#headermenu_blog a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#333333'}, 150);
		}
	);
	
    $('#headermenu_search a').hover(
		function () {
			$(this).stop().animate({color:'#EA673D'}, 150);
		},
		function () {
			$(this).stop().animate({color:'#333333'}, 150);
		}
	);
	
});

