
var Village = {
	init: function(){
		Village.setups();
		Village.rewriteLinks();
	},
	setups: function(){
		if ($('side').getStyle('height').toInt() < 300) $('side').setStyle('height', '300px');
		if ($('side').getStyle('height').toInt() < $('food').getStyle('height').toInt()) $('side').setStyle('height', $('food').getStyle('height').toInt() + 'px');
	},
	rewriteLinks: function(){
		var a = $$('a');

		for (var i=0; i < a.length; i++) {
			if (a[i].rel == 'external') a[i].target = '_blank';
		}
	}
};

window.addEvent('load', Village.init);
