$(document).ready(function(){
  
  $('#post_submit').addClass('fg-button ui-state-default ui-corner-all');
  $('#post_submit').hover(
  	function(){ 
  		$(this).addClass("ui-state-hover"); 
  	},
  	function(){ 
  		$(this).removeClass("ui-state-hover"); 
  	}
  );
  $('#featured-work div.view-more a').hover(
  	function(){ 
  		$(this).addClass("ui-state-hover"); 
  	},
  	function(){ 
  		$(this).removeClass("ui-state-hover"); 
  	}
  );
  $('.client-login a').click(function(){
    $('#super-header').slideToggle();
  });  
  //Grab the original BG color of the link
  var originalBG = "#fff";
  //The color you want to fade too
  var fadeColor = "#eee"; 
  $('.project').hover(
    function(){
      $(this)
      .animate({backgroundColor:fadeColor}, 250)
      .find('.overlay').fadeIn(250);
    }, 
    function(){
      $(this)
      .animate({backgroundColor:originalBG}, 250)
      .find('.overlay').fadeOut(250);
    }
  );
});

