This doesn't work in my browser - is this normal? It only works when I declare the alias for the document Object inside the function someFunc scope.
var pic1 = document.getElementById('pic1');
var someFunc = function () {
pic1.style.left = "100px";
}