/* table cell containing scroller, good idea to set its width and height  */
td#scroller1 { 
 width:253px; 
 height:187px;
}

/* holder div contains scroller. set height and width */
#holder1 { 
 position:relative; 
 width:250px; 
 height:145px; 
 z-index:100 
}

div#wn1 { 
  position:absolute; 
  width:250px; 
  height:145px; 
  z-index:1;
  clip:rect(0, 250px, 145px, 0); 
  overflow:hidden;
}

div#cnt1 { 
 position:absolute; 
 z-index:1 
}

/* Set width and height of item same as width and height of scroller (wn1) */
div.item {
 width:250px; 
 height:145px; 
}