$(document).ready(function() {

	$('#navigation-bar li > a:not(.active)')
		.mouseover(function(){
			$(this).stop().animate({color:'#dd6000', backgroundColor:'#fff'}, 300)
			})
		.focus(function(){
			$(this).stop().animate({color:'#dd6000', backgroundColor:'#fff'}, 300)
			})
		.mouseout(function(){
			$(this).stop().animate({color:'#535353', backgroundColor:'#eee'}, 600)
			})
		.blur(function(){
			$(this).stop().animate({color:'#535353', backgroundColor:'#eee'}, 600)
			});
		

	$('#header-right ul > li > a')
		.mouseover(function(){
			$(this).stop().animate({backgroundColor:'#eee'}, 300)
			})
		.focus(function(){
			$(this).stop().animate({backgroundColor:'#eee'}, 300)
			})
		.mouseout(function(){
			$(this).stop().animate({backgroundColor:'#fff'}, 600)
			})
		.blur(function(){
			$(this).stop().animate({backgroundColor:'#fff'}, 600)
			});

	$('#column-external ul > li:not(.active) > a')
		.mouseover(function(){
			$(this).stop().animate({color:'#dd6000', backgroundColor:'#fff'}, 300)
			})
		.focus(function(){
			$(this).stop().animate({color:'#dd6000', backgroundColor:'#fff'}, 300)
			})
		.mouseout(function(){
			$(this).stop().animate({color:'#535353', backgroundColor:'#eee'}, 600)
			})
		.blur(function(){
			$(this).stop().animate({color:'#535353', backgroundColor:'#eee'}, 600)
			});

});