$(document).ready(function() {

    $('.show').click(function(event) {

    //event.preventDefault();

    if ($(this).next('.hide').css("display") == "none") {

            $(this).next('.hide').slideDown(800);

        } else {

            $(this).next('.hide').slideUp(800);   

            }

    }); 

});


