ul
{
    list-style: none;
	width: 60%;
	margin: auto;
}

li
{
    width: 340px;
	height: 175px;
	text-align: center;
	font-weight: bold;
	display: inline-block;
	border: 1px solid #000;
	margin: 10px;
	padding: 0px;
    border-radius: 10px;
    background-position: center;
    position: relative;
	overflow: hidden;
}

#item1{background-image: url('projecteden/PE0.jpg')}
#item2{background-image: url('crashbash/CB0.jpg')}
#item3{background-image: url('obscure/O10.jpg')}
#item4{background-image: url('gearsofwar/GOW0.jpg')}
#item5{background-image: url('haloreach/HR0.jpg')}

li a
{
    display: block;
	width: 100%;
	height: 100%;
    text-decoration: none;
}

li span
{
	display: block;
    height: 50px;
    width: 100%;
    color: #fff;
    margin: 0px;   
    line-height: 50px;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
	left: 0px;
	top: 175px;
    transition-property: top;
    transition-duration: 1s;
}

li:hover span
{
	top: 125px;
}