$(function(){
	(function($){
		$.fn.extend({
			altTextOfImgOnHover : function(){
				return this.each(function(){
					var topLevelParent = $(this),
						theImg = topLevelParent.find("img"),
						theImgAltText = theImg.attr("alt");
						theImgSrc = theImg.attr("src");
					$(theImg).hide();
					$(theImg).after("<span>"+theImgAltText+"</span>");
					$(topLevelParent).css({
						"backgroundColor":"#ffde00",
						"backgroundImage": "url("+theImgSrc+")",
						"backgroundPosition":"center center",
						"backgroundRepeat":"none"
					});
				});
			}	
		});
	})(jQuery);
	
	$('.section').after('<div class="clear"></div>').append('<div class="clear"></div>');
	$('#theContent ul li').wrapAll('<span></span>');
	$('#theContent ol li').wrapAll('<span></span>');
	$('#theMastHead a').altTextOfImgOnHover();
	$('#theContent').masonry({ columnWidth: 160 });
	$('#theHeader ul li ul').hover(function(){
		$('#theMastHead').stop().animate({opacity:0.25},1000,"swing");
	},function(){
		$('#theMastHead').stop().animate({opacity:1},1000,"swing");
	});
	$('#theHeader ul li.topLvlNav').hover(function(){
		$('#theMastHead').stop().animate({opacity:0.25},1000,"swing");
	},function(){
		$('#theMastHead').stop().animate({opacity:1},1000,"swing");
	});
	
});