Multiple Gantt Chart on a page

Hi, is there a posibility to create more than one gantt chart on a page, I mean two chart on two different

like this
<body>
	<div id="gantt_here" style='width:1020px; height:400px;'></div>
	
	<div id="gantt_here2" style='width:820px; height:400px;'></div>
	<script type="text/javascript">
		var gantt0 = gantt;
		gantt0.init("gantt_here");
		gantt0.parse(demo_tasks);
		
		var gantt1 = gantt;
		gantt1.init("gantt_here2");
		gantt1.parse(users_data);
	</script>
</body>

I tried above code, but no luck, the first one is blank

thank you

Not possible with 2.0, but will be possible with 2.1 ( we already have working code locally )

Thank you for the response, it seem for now I must using iframe instead