// Yayindakiler Parallax
$('body').parallax({
      'elements': [
        {
          'selector': 'div.istanbul',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 0,
                'multiplier': 0.01,
                'invert': true
              }
            }
          }
        },
        {
          'selector': 'div.golge',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 50,
                'multiplier': 0.02,
                'invert': true
              }
            }
          }
        },
        {
          'selector': 'div.outer',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 50,
                'multiplier': 0.02,
                'unit': '%'
              }
            }
          }
        },
        {
          'selector': 'div.inner',
          'properties': {
            'x': {
              'background-position-x': {
                'initial': 0,
                'multiplier': 0.4
              }
            }
          }
        }     
      ]
    });
