$(document).ready(function() {

	// Hide anything we want hidden.
    $('.hide').hide();

	// "Show Details" link actions
    $('p.more > a').click(function() {
        var id = $(this).attr('id');
        
        // Open/Close the details box.
        $('#info-' + id).toggle();
        
        // Swap the show/hide text.
        if ($(this).text() == 'show details')
        {
            $(this).addClass('open').text('hide details');
        }
        else
        {
            $(this).removeClass('open').text('show details');
        }
        
        // Tell the browser to ignore the # url.
        return false;
     });
     
     // Do the tab thang
     $('#tab-container').tabs();
}); 