$(function() {
    $("#articles").accordion({          
        header: "p",
        active: false,
	autoHeight: false
    });
    
     $("#left").accordion({          
        header: "p.accordion-header",
        active: false,
	autoHeight: false
    });
    

    $("p", "#articles").click(function(e) {
        var contentDiv = $(this).next("div");
        var url = $(this).find("a").attr("href") + "&type=44"
        contentDiv.load(url);      
    });                    
});


