$( function () {
    $("#masthead h1 a img").hover ( function () { $(this).dropShadow({left: 0, top: 0, opacity: 1, blur: 3}); }, function () { $(this).removeShadow(); } );

		var sc = $('#structure-content');
        sc.dropShadow({left: 0, top: 0, opacity: 1, blur: 4});
        $("#structure-sidebar").dropShadow({left: 0, top: 0, opacity: 0.5, blur: 4});

		$("#work-items ul li a img").hover ( function () { $(this).dropShadow({left: 0, top: 0, opacity: 1, blur: 3}); }, function () { $(this).removeShadow(); } );
		
        sc.prepend( '<div id="structure-content-stripe"></div>');
		$("#structure-content-stripe").css('height', sc.css('height') );

	});