jQuery(function($) {
function fixDiv() {
var $cache = $('#fixed');
if ($(window).scrollTop() > 50)
$cache.css({
'position': 'fixed',
'top': '0px'
});
else
$cache.css({
'position': 'relative',
});
}
$(window).scroll(fixDiv);
fixDiv();
});