position:fixed al llegar scrolleando a cierto punto
$(window).scroll(function(e){
$el = $('.fixedElement');
if ($(this).scrollTop() > heightalaqseponefixed && $el.css('position') != 'fixed'){
$('.fixedElement').css({'position': 'fixed', 'top': '0px'});
}
if ($(this).scrollTop() < heightalaqseponefixed && $el.css('position') == 'fixed'){
$('.fixedElement').css({'position': 'absolute', 'top': '0px'});
}
});