$('.navigation-img li').click(function() {
var getvalue = $(this).attr('rel');
$('.img-mock-up img').css('transform','translateY( ' + getvalue + ')');
$(this).prev().addClass('active');
$(this).addClass('active');
$(this).next().removeClass('active');
return false;
});