$(document).ready(function() {
   // toggles the more_info box on clicking the More Info &darr; link 
   $('.toggle').click(function(){
     if ($(this).next('blockquote').length > 0) {
        $(this).next('blockquote').toggle(400);
        $(this).toggleClass("up").toggleClass("down");
     } else if ($(this).next('.toggle_content').length > 0) {
        $(this).next('.toggle_content').toggle(400);
        $(this).toggleClass("up").toggleClass("down");
     }
     return false;
   }).toggleClass("down");

   //hide the div's to begin with
   $('.toggle').next().hide().addClass("toggle_content");
   $('.toggle:first').toggleClass("up").toggleClass("down").next().show();

   //create wraps for images for CSS
   $(".homeImage").append("<div class='homeImageOverlay'>&nbsp;</div>");
   $("#hdrImg img").wrap("<div class='img'></div>");
   $("#contentSlot hr").wrap("<div class='hr'></div>");
});

