// Gets rid of the image "protection"
var RemoveProtection = function ()
{
toDelete=document.getElementById('spacerLayer');
toDelete.parentElement.removeChild(toDelete);
}

document.addEventListener("DOMContentLoaded",RemoveProtection,false);
