var user_agent = navigator.userAgent;

if(user_agent.search(/iPhone/) == -1) {
	
	var scrollbar;
	$(function () {
			$('#what .list').width(500);
			scrollbar = new ScrollBar('#what .list ul', '#what .list');
		}
	);
	
}

