// hiding image in StoryBuilder that will Display in PageBuiler
function load() {
  
  for (var i=0, len=document.images.length; i < len; i++) {
    //work with images here
    //alert("help")
  t1 = document.images[i];
  //alert(t1.src);
  t2 = t1.alt
  //alert(t2);
  t3 = "thumbnail_ex"
  if(t2 == t3) {
   //alert(t1.style.display);
   //alert(t1.src + "i =" + i);
   t1.style.display = 'none';
   //alert("yep");
  }
  //else {alert("nope");
  //}
}
  
}