$(document).ready(function() {
  $('#add-this img').hover(function() {
    $(this).attr('src','/imgs/addthiscolor.png');
  }, function() {
    $(this).attr('src','/imgs/addthis.png');
  });
});

$(document).ready(function() {
  
  // Horizontal Sliding Tabs Demo
  $("div#menu-wrap").slideTabs({
  // Options  
  orientation: 'horizontal',
  slideWidth: 900, // Width of the #tabs_container <div> element
  contentAnim: 'slideLeft',
  contentEasing: 'easeInOutExpo',
  tabsAnimTime: 300,
  contentAnimTime: 600
  });    
  
});

$(window).load(function(){
  $('#container-inner').fadeIn(4000);
});

