function doJump(whereto) {
	// Display the content of the first DIV element in the collection.
   var obj = document.getElementById(whereto);
   var calc = (document.getElementById("scroller").offsetHeight - document.getElementById("content").offsetHeight)*-1;
	if (obj.offsetTop > calc) {
   		Scroller.jumpTo(calc);
   } else {
		Scroller.jumpTo(obj.offsetTop);
		return false;
	}
}

function fnGetId2(){
   // Display the content of the first DIV element in the collection.
   alert(document.getElementById("faq1").offsetTop);
}

function fnGetId(){
   // Display the content of the first DIV element in the collection.
   var obj = document.getElementById("test");
   alert(obj.offsetTop);
}

