


$(document).ready(function () {
	$('input.field').each(function(){
		$(this).wrap("<span class=\"fieldbg\"/>")
	})
	$("textarea").each(function(){
		$(this).wrap("<span class=\"fieldtxtbg\"/>").after("<span class=\"txtbot\"/>")
	})
	var maxheight = 0;var boxheight = 0;
	$(".profile[class$='profile']").each(function(){
			var el= $("h4,h3",this)
			
			el.css('height','');
			maxheight = (el.height() > maxheight) ? el.height() : maxheight;
			el.css('height', maxheight);
	})
	$(".profile[class$='profile'] h4,.profile[class$='profile'] h3").css('height', maxheight);
	
	$(".profile[class$='profile'] a.wrap").each(function(){
			var el= $(this)
			boxheight = el.height() 
			el.css('height','');
			maxheight = (el.height() > boxheight) ? el.height() : boxheight;
			//el.css('height', boxheight);
	})
	//$(".profile[class$='profile'] a.wrap").css('height', boxheight);
})

