$(document).ready(function(){

  $('.yellowfade').mouseenter(function() {

    $(this).css('background-color','#FFFFFF');

    $(this).animate({
      'background-color': '#F8D617',
    }, { queue: false, duration: 600});
  });

  $('.yellowfade').mouseleave(function() {
    $(this).animate({
      'background-color': '#D4D3D3',
    }, { queue: false, duration: 600});
  });

  $('.galleryfade').mouseenter(function() {
    $(this).animate({
      'background-color': '#F8D617',
    }, { queue: false, duration: 800});
  });

  $('.galleryfade').mouseleave(function() {
    $(this).animate({
      'background-color': '#FFFFFF',
    }, { queue: false, duration: 800});
  });

  $('#latestprojects').mouseenter(function() {
    $(this).children('.teasertext').animate({
      'margin-top': '56px',
    }, { queue: false, duration: 800});
  });

  $('#latestprojects').mouseleave(function() {
    $(this).children('.teasertext').animate({
      'margin-top': '0px',
    }, { queue: false, duration: 800});
  });
});

