// JavaScript Document

$(document).ready( function() {
	$(".boxOuter").setHeight(".boxInner, .anchor", {outer:true}).find(".anchor").css( {"background":"#fff", "opacity":0} )
	.hover( function() {
		$(this).css("opacity", 0.3);
	}, function() {
		$(this).css("opacity", 0);
	} );
} );
