jQuery(function(){
  jQuery('a.video-tour, a.sign-in').each(function(i,e){
    jQuery(e).fancyZoom({ directory: '/ui/libs/js/fancyzoom/jquery/images' });
  });
  if (!jQuery('body').hasClass('editing')) {
    jQuery('a.fancyzoom-image').each(function(i,e){
      var _zoomElementId = 'fancyZoomImageElement_'+i;
      jQuery('<div id="'+_zoomElementId+'" style="display:none;"><img src="'+e.href+'" /></div>').appendTo('body');
      e.href = '#'+_zoomElementId;
      jQuery(e).fancyZoom({ directory: '/ui/libs/js/fancyzoom/jquery/images' });
    });
  }
  jQuery('.oldie body.home .pods .wide .content').css('padding','25px');
  jQuery('.oldie body.home .container.outer .container:last-child').css('background','none');
  jQuery('.oldie body.home .pods .pod div.blog ul li:nth-child(odd), .oldie .sidebar div.blog ul li:nth-child(odd)').css('background','#f0f0f0');
});
