.foodname{
font-weight:bold;
text-decoration:underline;
position: relative;
z-index: 0;
}

.foodname:hover{
background-color: transparent;
z-index: 50;
}

.foodname span{ /*CSS for enlarged image*/
position: absolute;
background-image:url(imgs/mainBG.png);
padding: 5px;
left: -1000px;
border: 1px solid black;
width:195px;
visibility: hidden;
color: #FFF;
text-decoration: none;
}

.foodname span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.foodname:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
position: absolute;
top: 0px;
left: -215px; /*position where enlarged image should offset horizontally */

}

