/**
 * Show/hide Jargon Buster sections based on menu clicks.
 */

var JargonBuster = {
		
    init: function()
    {
		$('div.jargon_list').hide();
		$('div.jargon_list:first').show();
		$('.jargon_button a').click(JargonBuster.showSection);
    },
    
    showSection: function()
    {
    	var target = $(this).attr('href');
    	$('div.jargon_list').hide();
    	$('div'+target).show();
    }
		
}

$(document).ready(JargonBuster.init);

