// realigning text to image in dynamic storybuilder page listing
function thck() {
  
  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
  t2 = t1.src;
  //alert ("src is" + t2);
  t3 = t2.indexOf("thumb");
  //alert("index value is " + t3);
  t4 = "79";  
  //alert("t4 is " + t4);
  if (t3==t4) {
       //alert("yes");
       t1.style.cssFloat = 'left';
       t1.style.styleFloat = 'left';
       //alert(t1 + " t1 style float is " + t1.style.cssFloat);
       }
 // else {alert("nope");}
  
  
  //alert(t2.indexOf("thumb"));  
  
  
}
  
}
