window.addEvent('domready', function() {
	if ($('templates')) {
		if ($('view_all')) {
			template_event('all');
		}
		if ($('view_left')) {
			template_event('left');
		}
		if ($('view_right')) {
			template_event('right');
		}
		if ($('view_single')) {
			template_event('single');
		}
	}
});
function template_event(type) {
	$('view_'+type).addEvent('click', function(e){
		new Event(e).stop();
		$$('.templates').each(function(template){
			if (type == 'all' || template.getProperty('id') == 'templates_'+type) {
				template.setStyle('display', 'block');
			} else {
				template.setStyle('display', 'none');
			}
		});
		$$('#templates a').each(function(a){
			if (a.getProperty('id') == 'view_'+type) {
				a.addClass('selected');
			} else {
				a.removeClass('selected');
			}
		});
	});
}