
$(document).ready(function() {
 $(".panel2").hide()
 $(".panel1").click(function() {
 $(this).next().slideToggle('fast');
 });
 });


/*

$(function(){
    $('.panel2').hide();
    $('.panel1').click(function(){
        var next = $(this).next();
        if(next.is(':visible')){
            next.slideUp();
        }else{
            next.slideDown();
        }
    });
});

*/


/*

$(function(){
    $('.panel2').hide();
    $('.panel1').click(function(){
        var next = $(this).next();
        if(next.is(':visible')){
            next.hide();
        }else{
            next.show();
        }
    });
});


*/




