$(document).ready(function(){

	var H = 0;

	$("div.equalheight").each(function(i){
		var h = $("div.equalheight").eq(i).height() + 40;
		if(h > H) H = h;
	});

	$("div.equalheight").height(H);
	$(".button").corner("10px");
	$("#wrapper").corner("20px");
	$("#content").corner("20px");
	$("#logo").corner("20px");
	$("#outerContainer").corner("20px");
	$("#menu a").corner("round right");
});


