﻿jQuery('div.parallax').parallax({
        'elements': [
          {
            'selector': 'div.backlev',
            'properties': {
              'x': {
                'background-position-x': {
                  'initial': 0,
                  'multiplier': 0.1
                }
              },
              'y': {
                'background-position-y': {
                  'initial': 0,
                  'multiplier': 0.0,
                  'min': 0,
                  'max': 0
                }
              }
            }
          },
          {
            'selector': 'div.midlev',
            'properties': {
              'x': {
                'background-position-x': {
                  'initial': 0,
                  'multiplier': 0.3
                }
              },
              'y': {
                'background-position-y': {
                  'initial': 0,
                  'multiplier': 0.0,
                  'min': 0,
                  'max': 0
                }
              }
            }
          },
          {
            'selector': 'div.frontlev',
            'properties': {
              'x': {
                'left': {
                  'initial': 0,
                  'multiplier': 0
                }
              },
              'y': {
                'top': {
                  'initial': 0,
                  'multiplier': 0
                }
              }
            }
          }
        ]
      });

