$(document).ready(function() {
    $(".togglebox").each(function (){

        if ($(this).prev(".toggleboxbutton").length < 1)
            $(this).before('<span class="toggleboxbutton"></span>');

        $(this).hide();
        
        if ($(".show").length > 0) {
            $(this).show();
            $(this).prev(".toggleboxbutton").prepend('<img src="/img/collapse.png" alt="toggle" />');
        } else {
            $(this).prev(".toggleboxbutton").prepend('<img src="/img/expand.png" alt="toggle" />');
        }

        $(this).prev(".toggleboxbutton").click(function (){
            $(this).next().toggle();
         
            if($(this).next().is(":hidden"))
                 $(this).children("img").attr("src","/img/expand.png");         
            else
                 $(this).children("img").attr("src","/img/collapse.png");            
        }); 
    });
});
