#rotating-items {
    position: relative;
    width: 450px;
    height: 300px;
    margin: -50px -20px 0 -20px;
}
.rotating-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 300px;
}

#rotating-has .rotating-item {
    position: absolute;
    top: 0;
    width: 275px;
    height: 500px;
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: fliph;
}

#rotating-has {
    width: 275px;
    height: 500px;
    position: relative;
    margin: -20px -20px -20px 20px;
}