window.addEvent('domready', function() {
	$$("li.clickable").addEvent('click',function() {
		if(/^\//.test(this.get('href'))) {
			window.location = this.get('href');
			return;
		}
		window.location = $('base').get('href')+this.get('href');
	});
});