$(window).load(function(){
	window.scrollTo(0, 1); //hide bars from mobile safari
		
});
             
$('#parallax').parallax({
      'elements': [
         
		{
          'selector': '#front',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 0,
                'multiplier': 0.02
              }
            }
          }
        },
        {
          'selector': '#horizon',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 0,
                'multiplier': 0.04
              }
            }
          }
        },
        {
          'selector': '#sky',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 0,
                'multiplier': 0.08
              }
            }
          }
        }
      ]
});
$(document).ready(function(){

		$('#parallax').append('<span id=cancelparallax><a href="#">stop animatie</a></span>')
		$('#cancelparallax a').click(function(){
			$('html').unbind('mousemove');
			$(this).remove();
			return false;
		});
});		
