jQuery(document).ready(function() {

// toggle the shortcode sections

//    jQuery('.section').hide();
    jQuery('.heading,.question').click(function() {

        jQuery(this).next('.section').slideToggle();
        return false;

    });

// remove bogus anchor tag from Featured section slides

//    jQuery('div.slide a:nth-child(2)').remove();
//    jQuery('.attachment-featured-slide').unwrap();
    
    jQuery('div.slide img').wrap(jQuery('div.slide a'));


});


