body { 
  margin: 0; padding: 0; 
  overflow: hidden
}

div#hold { 
  position: relative; 
  width: 495px; height: 80px; 
  z-index: 1000; 
}

div#wn { 
  position: absolute; left: 0; top: 0;
  width: 495px; height: 80px; z-index: 1;
  clip: rect(0, 495px, 80px, 0); overflow: hidden;
}

div#cnt { position:absolute; z-index:1 }

/* width of table = number of items * scroller width 
   Setting width on table and width and height on table cell needed
   for this example because images vary in size and don't fill scroller space
*/

table#imgTbl { 
  width: 990px 
}

table#imgTbl td {
  width: 495px; height: 80px; 
  vertical-align: middle;
}

table#imgTbl img {
  border: 0px none;
}