/* goSetHeight */
function goSetHeight(dit){	

	var maximaHeight = 0;
	
	$(dit).each(function(){
							   
		nuHeight = $(this).height();
		if(nuHeight > maximaHeight){
			
			maximaHeight = $(this).height();
		}
		
	});

	$(dit).each(function(){
		$(this).height(maximaHeight);
	});
	
};


// submit
function submitMe(dit){
	$(dit).submit();
}

// box
$(document).ready(function() {
	// put all your jQuery goodness in here.
	$(".box").wrapInner('<div class="tl"><div class="tr"><div class="br"><div class="bl"></div></div></div></div>');
});