/*
 * Master
 * http://rayboyd.com/
 *
 * Copyright (c) 2009 Ray Boyd
 * Dual licensed under the MIT and GPL licenses.
 */

// Load jQuery
google.load('jquery', '1.3.1');

// Dom ready?
google.setOnLoadCallback(start);

// Start app
function start()
{
    $('.tabs a').click(function(){
        var href = $(this).attr('href');
        $("#content_pane").load(href);
        return false;
    });
};
