	var scr = new ScrollBar('main', 'content');
		var scr2 = new ScrollBar('main2', 'content2', {
			'arrows': false,
			'hScroll': false
        });
		
		new Drag('content', {
			'modifiers': {y: 'height', x: 'width'},
			'limit': { x:[100], y:[50] },			
			onDrag: function(){
				scr.update();
			}
		});
		
		new Drag('content2', {
			'modifiers': {y: 'height', x: 'width'},
			'limit': { x:[100], y:[50] },			
			onDrag: function(){
				scr2.update();
			}
		});		
