﻿$(function() {

    // Collapsible panes (various articles):
		
	// Actions for all H1 elements
	 $("h1.pane_control,h2.pane_control").click(function() {
        $(this).next().addClass("pane").slideToggle("normal");
    }).next().hide();
    
    // Some CSS tidying up
    $("a[href='#tab-3']").css('width','179px');
    
		
});