i'm still trying to grasp this stuff so some help would be appreciated
I have 5 div's all set with heights based off $(window).height()
I have set each div with a unique ID
what i would like to do would be to have query scroll the window to each ID based on 50% of window.height either way
i have some vars set
var wH = $(window).height();
var half-wH = (wH) / 2;
i.e. window height 600px
<300px scrollTo #id1
>300px but <900px scrollTo #id2
etc. but only after a small delay
I know that if i use
.scrollTop() in combination with the 1st div #ID1
it'll show me the pixels scrolled from the top of my page
how i place it all together has me scratching my head!!