$(document).ready(function(){
  
  $('#home .grid').mouseenter(function() {
    $(this).fadeTo(200,0.5); 
  });

  $('#home .grid').mouseleave(function() {
    $(this).fadeTo(100,1); 
  });
  
  $('#footer a.hover').mouseenter(function() {
    $('#footer div#smv-hover').html($(this).attr('id')).css('text-transform','capitalize');
    var margin=$(this).attr('rel');
    $('#footer div#smv-hover').css('margin-left',margin+'px');
  });
  
  $('#footer a.hover').mouseleave(function() {
    $('#footer div#smv-hover').html('');
  });
  
});
