function menuInit() {
	$('div.menu').corner("13px top");
	$('div.co-round').corner("cc:#7173b9 9px top");
	$('div.co, div.footer').corner("2px bottom");

	$('div.menu').corner("9px top");
	$('div.co-round').corner("cc:#7173b9 6px top");
	$('div.co').corner("3px bottom");
	$('div.footer').corner("2px bottom");


	$('div.menuItem').map( function () {
		$(this).attr("colorOne", $(this).css("backgroundColor"));
		$(this).attr("colorTwo", "darkorange");
	});

	$('div.menuItem').mouseenter( function () {
		$(this).stop(true).animate({ backgroundColor: $(this).attr("colorTwo") }, 170);
	});

	$('div.menuItem').mouseleave( function () {
		$(this).stop(true).animate({ backgroundColor: $(this).attr("colorOne") }, 170);
	});
}
