jQuery(document).ready(function() {

    jQuery('.more-info img').each(function() {
        jQuery(this).click(function(e) {

            e.preventDefault();
            which = jQuery(this).attr('car');
            jQuery(which).slideToggle();



            if (jQuery(this).attr("src") == "/wp-content/themes/PCM/images/close.png") {
                jQuery(this).attr("src", "/wp-content/themes/PCM/images/moreinfo.png");

            } else {
            jQuery(this).attr("src", "/wp-content/themes/PCM/images/close.png");
            }




        })
    });

});



