Parallax Scroll - change class .MOVE to whatever needed | best turned off for mobile
<script>
function parallax(){
var scrolled = $(window).scrollTop();
$('.MOVE').css('margin-top', -(scrolled * 0.2) + 'px' );
}
$(window).scroll(function(e){
parallax();
});
</script>