got reply... Thanks to calyguy0000 on irc (sorry if i placed an extra/less zero

)
For people who might face the problem i faced.
Problem:
A page contains many headings. And we want to create menu items that can be linked to those headings. Something like a left aligned index.
___________________________PAGE_______________________________
-StartMenu-------------------------Content---------------------------------------------------------
-Click to go to heading 1 ------Content---------------------------------------------------------
-Click to go to heading 2 ------Content---------------------------------------------------------
-Click to go to heading 3 ------Content---------------------------------------------------------
-Click to go to heading 4 ------Content---------------------------------------------------------
-Click to go to heading 5 ------Content---------------------------------------------------------
-EndMenu---------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------heading 1-------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------heading 2-------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------heading 3-------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------heading 4-------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------heading 5-------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
----------------------------------------Content---------------------------------------------------------
______________________END OF PAGE___________________________
so i hope you would have guessed, page is filled with content and very long, and we want to have a user to jump to any heading by clicking a menu item instead of scrolling down. So what's the solution?
Solution:
Read "The Anchor Tag and the Name Attribute" at
http://www.w3schools.com/HTML/html_links.asp
changed all headings (or the text that you want menu items to point to) into anchor
Create a new menu item, change its type to Link
and put in the link of the anchor that it's name crossponds to.
I guess this was a very small problem, in which a noob like me got into. Just wanna let other noobs know who are at my level on how to solve this problem. Though i really doubt if a single person learnt a new thing out of it coz anchors are very common, and almost all internet surfers know that, except me
