/**
 * Replace the headings
 * @author Guillaume VanderEst <gvanderest@netshiftmedia.com>
 */
 
$(document).ready(function(){

    $("#page_home #site_content h1").html($("#page_home #site_content h1").html().replace('Welcome', "<img src=\"/files/images/home-header.png\" alt=\"\" />"));
    $("#page_daily-info #site_content h1").html("<img src=\"/files/images/daily-info-header.png\" alt=\"\" />");
    $("#page_prize-update #site_content h1").html("<img src=\"/files/images/prize-update-header.png\" alt=\"\" />");
    $("#page_special-events #site_content h1").html("<img src=\"/files/images/special-events-header.png\" alt=\"\" />");
    $("#page_services #site_content h1").html("<img src=\"/files/images/services-header.png\" alt=\"\" />");
    $("#page_contact-us #site_content h1").html("<img src=\"/files/images/contact-us-header.png\" alt=\"\" />");
    $("#page_winners-gallery #site_content h1").html("<img src=\"/files/images/winners-gallery-header.png\" alt=\"\" />");
    $("#page_charity #site_content h1").html("<img src=\"/files/images/charity-header.png\" alt=\"\" />");
    $("#page_vip-sign-up #site_content h1").html("<img src=\"/files/images/vip-sign-up-header.png\" alt=\"\" />");
    $("#page_virtual-tour #site_content h1").html("<img src=\"/files/images/virtual-tour-header.png\" alt=\"\" />");
    $("#page_employment #site_content h1").html("<img src=\"/files/images/employment-header.png\" alt=\"\" />");

});

