/* common.js */

function setupNav() {
	$$('#nav_wrapper a').each(function(item) {
		item.addEvent('mouseenter', function() {
			item.tween('color', '#731c74');
		});
		item.addEvent('mouseleave', function() {
			item.tween('color', '#f2e3b3');
		});
	});
}