$('document').ready(function() {
	
	$('.broken').click(function() {
		alert("Humans are inherently flawed. Technology is built by humans. Therefore, technology is inherently flawed. Welcome to BrokenDisk!");
		return false;
	});	
	
	$('.page-nav a').click(function(e){
        e.preventDefault();
        var target = $(this);
        $('.page-nav li').removeClass('on');
        target.parents('li').addClass('on');
        $('.pane:visible').fadeOut('fast', function(){
            $('#'+target.text().replace(' ','_')).fadeIn('fast');
        });
    });
	
});

