﻿$(function() {
	$('#fixed').addClass('hidden');	   
		   
    $('#fixed input').click(function() {
        $('#fixed').addClass('hidden');
    });

var onSuccess = function(data, textStatus) {
            $('#fixed div#load').html(data);
            $('#fixed img#loading').addClass('hidden');
        };

var onFailure = function(XMLHttpRequest, textStatus, errorThrown) {
            $('#fixed div#load').html('Is currently unavailable: ');
            $('#fixed img#loading').addClass('hidden');
        };

    $('#content span').click(function() {
        var url = 'panels/' + this.id + '.htm';

        $('#fixed, #fixed img#loading').removeClass('hidden');
        $('#fixed div#load').html('Loading ...');

        

        $.ajax({
            url: url,
            success: onSuccess,
            error: onFailure
        });
    });
});