// JavaScript Document

$(document).ready(function(){
    $(".nav").live("mouseover", function(){
      $(this).stop()
		.animate( { color: '#fff000' }, 200);
	  
    });
	$(".nav").live("mouseout", function(){
      $(this).stop()
		.animate( { color: '#d2e9f3' }, 1000);
	  
    });
	
});