.example1 a{
	position:relative;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #666666;
}/* set stacking context*/
.example1 a span{
	visibility:hidden;/* hide message initially*/
	position:absolute;
	left:0px;
	width:300px;
	padding:1px;
	color:#333333;
	border:1px inset #333333;
	background-color: #FFFFFF;
	top: -230px;
	background-image: url(images/michealtext.jpg);
	height: -3px;
}
.example1 a:hover{
	visibility:inherit
}/* ie bug needed to make span show*/
.example1 a:hover span{
	visibility:inherit;
}/* reveal image*/

