// JavaScript Document

/// Very top bar / navigation
$(document).ready(function() {
  $('#top-bar li a').hover(function() {
		$(this).css({"background-color": "#54717f"});								
        $(this).animate({"background-color": "#012840"}, 200);
		},function() {  
		$(this).animate({"background-color": "#54717f"}, 300);
	});
});

/// Top navigation
$(document).ready(function() {
  $('#menu li a').hover(function() {
		$(this).css({"background": "#5b9ed9"});								
        $(this).animate({"background-color": "#3c79ab"}, 200);
		},function() {  
		$(this).animate({"background-color": "#5b9ed9"}, 300);
	});
});


/// Left navigation
$(document).ready(function() {
  $('#left-column .boxes a.cufon').hover(function() {
		$(this).css({"background": "#54717f"});								
        $(this).animate({"background-color": "#012840"}, 200);
		},function() {  
		$(this).animate({"background-color": "#54717f"}, 300);
	});
});












