Scroll
show options when scrolling
HTML
<div style="height:800px; background-color:#000;">
<div id="one" style="display:none;">
Hola
</div>
JavaScript
$(function() {
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 0) {
$('#one').show('fast');
}
});
});