jQuery(function(){
	if(jQuery.browser.msie){
		jQuery('ul#menu-home-navigation .text').each(function(){
			var shadow = jQuery(this)
				.clone()
				.addClass('shadow');
			jQuery(this)
				.wrapInner('<span class="copy"/>')
				.append(shadow);
		});
		jQuery('.oldie .columns h2 a')
			.prepend('<span class="more">More</span>');
		jQuery('.oldie body > footer').append('<div class="buildings"/>')
		jQuery('.oldie .columns .ctr').append('<div class="footer-line"/>')
		jQuery('.page-template-default .content article, .blog .content section.articles').append('<div class="shadow"/>');
	}
});
jQuery(window).load(function(){
		jQuery('.sidebar').css('top', Math.min(-(jQuery('.callout').outerHeight() - 40), -36));
		jQuery('html').addClass('loaded');
});
