a.imPop{
		position:relative;
		z-index:20;
}

/*
Increase z-index so that any links you are hovering over will appear on top of any other nearby "imPop" links.
In order to get the popup to work in IE, we need to set the display property of the link to "inline"
*/
a.imPop:hover{
		display:inline;
		z-index:30;
}

/*
Now we need to define the initial state for the span that contains our image thumbnail. All we want to do is hide it.
*/
a.imPop span{
		display:none;
}

a.imPop:hover span{
		display:block;
		position:absolute;
		top:-200px;
		left:200px;
		width:300px;
		height:233px;
}

a.imPop img{
		border: 0;
		width:300px;
		height:233px;
}

