jQuery(function() {
    jQuery(document).ready(function(){
        jQuery("div#fairTopics").load('fair_topics.html', function() {
            jQuery("div#fairTopics div.fairDetail").hide();
            jQuery("p.toggle img").click(function() {
                jQuery("div#fairTopics div.fairDetail").toggle();
            });
        });
    });
});

