
function roundCorners () {
	$("#footer").corner("12px bottom");
	$("#menu").corner("14px bl");
	$("#title").corner("12px top")
}

function mangleforIE() {
	//alert("ohno!");
}

$(document).ready(function() {
	$("#menu").hide().fadeIn(2000);
	roundCorners();
	if($.browser.msie) {
		mangleforIE();
    }
});

