I had the same problem and I was thinking about it about 2 hours.
I think the problem occours because every image has an empty attribute width and height:
width="" height=""
and IE probably take it as “0”.
Use that CSS:
.irw-slider img {
width:auto;
height:auto;
}