function toggleHtmlLayer(isTop){
	if(isTop) {
		$('scrollWrapper').style.zIndex = '10';
	} else {
		$('scrollWrapper').style.zIndex = '2';
	}
}
