$(document).ready(function() {
    // Replace Text Header
    $(".image-replace").each(function() {
        string = $(this).text();
        filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g, '');
        filelocation = ""
        $(this).html('<img src="' + filelocation + 'graphics/' + filename + '.png" alt="' + string + '" title="' + string + '" />');
    });
    // Entire Block Clickable
    $(".article-summary").click(function() {
        window.location = $(this).find("a").attr("href"); return false;
    });
    $(".home-box").click(function() {
        window.location = $(this).find("a").attr("href"); return false;
    });
    $(".map-box").click(function() {
        window.location = $(this).find("a").attr("href"); return false;
    });

});
