$(document).ready(function(){  

// This is for showing/hiding divs on the News page

$("div.older").click(function() { // When trigger is clicked... 
    var divId = $(this).attr('id');
    $(this).children('.clickdown').toggle("slow");
    return false;
}); 



}); 