//Detecting iPad/iPhone/iPod

if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {

	//Removing the scrollbar dom structure
	$(document).ready(function(){
	  	$('.scrollbar').remove();
		$('.track').remove();
		$('.thumb').remove();
		$('.end').remove();
		$('.overview').unwrap();
		$('.overview').children().unwrap();
		$('#scrollbar1').children().unwrap();
	});
	
};

