.imagethumbnail{
	position: relative;
	z-index: 0;
}

.imagethumbnail:hover{
	background-color: transparent;
	z-index: 50;
}

.imagethumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 5px;
	left: -1000px;
	visibility: hidden;
	text-decoration: none;
}

.imagethumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.imagethumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: -5;
	left: -250px; /*position where enlarged image should offset horizontally */
}