;(function($){ var actual_font_family; function afterLoad() { $(this).css('font-family',actual_font_family); $(this).fadeIn(); $('#shows-column').height(Math.max($('#news-column').height(), $('#shows-column').height())); $('a.gallery').colorbox(); } $(document).ready(function () { actual_font_family = $('body').css('font-family'); $('#throbber').ajaxStart(function() { $(this).css("visibility", "visible");}). ajaxStop(function() { $(this).css("visibility", "hidden"); }); $('[data-destination="content"]').click(function(event) { event.preventDefault(); $('#content').hide(); $('#content').load($(this).attr('href'), afterLoad); // $('#menu').css('font-family',actual_font_family); return false; }); $('#content').load('news.html', afterLoad); }); })(jQuery);