div.cycle {
	position: relative;
	overflow: hidden;
	border: solid 10px #fff;
	/* 
	set to true by jquery.cycle.js once the first image is loaded
	*/
	visibility: hidden;
	/* 
	set the default width and height in case something 
	goes wrong determining the size of the image 
	*/
	width: 800px;
	height: 500px;
}
div.cycle div.imageA,
div.cycle div.imageB {
	position: absolute;
	top: 0;
	left: 0;
}
div.cycle div.imageA {
	z-index: 2;
	visibility: visible;
}
div.cycle div.imageB {
	z-index: 1;
	visibility: hidden;
}
