#images {
	position:relative;
	overflow: hidden;
	margin-top:100px
}

.myTranslateY {
/*
	margin-top: -300px;
    height:30px;
*/
	color: red;
	position:absolute;
    top:15%;

	-webkit-transition: all 5000ms ease;
	-webkit-transform: translateY(0px);
}

.myTranslateY-clicked {
	color: red;
	position:absolute;
    top:15%;

	-webkit-transform: translateY(-200px);
	-webkit-transition: all 5000ms ease;	
}