// Image replacing
$(document).ready(function() {
  if($('#logo')) {
    $('#replace').each(function() {
      string = $(this).text();
      filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
      $(this).html('<img src="/image/header_logo.png" width="233" height="45" alt="Slot Power" />');
    });
  }
});	

