$(document).ready(function() {
    $('.mediumBoxGrid').hover(function() {
        $(".mediumBoxCaption", this).stop().animate({ top: '67px' }, { queue: false, duration: 160 });
    }, function() {
        $(".mediumBoxCaption", this).stop().animate({ top: '134px' }, { queue: false, duration: 160 });
    });

$('#social').hover(

function(){
$('#social #icons img').stop().fadeOut('fast', function(){$('#social #follow-us img').fadeIn('fast')});
$('#social').animate({
    right: '0'
  }, {queue: true, duration: 100}, function() {
   // Animation complete.
   $('#social #follow-us img').show();
  });

},
function(){
$('#social #follow-us img').stop().fadeOut('fast', function(){$('#social #icons img').fadeIn('fast')});
$('#social').animate({
    right: '-103px'
  }, {queue: true, duration: 100}, function() {
  // Animation complete.
  $('#social #icons img').show();
  });

}
);

$('#social_perf').click(function(){
$('#icons img').fadeOut('fast',function(){$('#icons img').fadeIn('fast')});
$('#social_perf').attr('src','/media/40749/performance_on.gif');
$('#social_style').attr('src','/media/40767/style_off.gif');
$('#a_fb').attr('href','http://www.facebook.com/pages/Fila-Performance/112161898838105?ref=ts');
$('#a_tw').attr('href','http://twitter.com/FilaPerformance');
});

$('#social_style').click(function(){
$('#icons img').fadeOut('fast',function(){$('#icons img').fadeIn('fast')});
$('#social_perf').attr('src','/media/40722/performance_off.gif');
$('#social_style').attr('src','/media/40713/style_on.gif');
$('#a_fb').attr('href','http://www.facebook.com/pages/Fila-Style/8463377877?ref=ts');
$('#a_tw').attr('href','http://twitter.com/Fila_Style');
});

});
