window.addEvent('load', function() {

	init('home');
	init('gigs');
	init('demo');
	init('shop');
	init('setlist');
	init('gbook');
	init('links');
	init('contact');

	show('home');

});

function init(id) {
	$(id).addEvent('click', function(event) {
		show(id);
	});
}

function show(action, content) {

	if (null == content) {
		content = 'content';
	}

	var req = new Request.HTML( {
		method : 'post',
		url : 'index.php?action=' + action,
		onRequest : function() {
		},
		onComplete : function(response) {
		},
		update : $(content)
	}).send();
}

function showMember(id) {

	var req = new Request.HTML( {
		method : 'post',
		url : 'index.php?action=' + id,
		onSuccess : function(responseTree, responseElements, responseText) {
			Slimbox.open('res/band/' + id + '.jpg', responseText);
		}
	}).send();
}