// JavaScript Document

function showBgImage (image , id) {
  document.getElementById(id).style.background = 'url('+image+') repeat-y top left';
}

function hideBgImage (image , id) {
  document.getElementById(id).style.background = 'url('+image+')';
}

