$(document).ready(function(){
$(".navlinks").hover(
  function () {
    $(this).animate({backgroundColor: '#F90'}, 'slow');
  }, 
  function () {
    $(this).animate({backgroundColor: '#de8600'}, 'fast');
  });	
$(".slink").hover(
  function () {
    $(this).animate({backgroundColor: '#6cF'}, 'slow');
  }, 
  function () {
    $(this).animate({backgroundColor: '#69f'}, 'fast');
  });
 });

