rendered paste body$(document).ready(function(){
$(window).bind('scroll', function(){
$("#secondMenuOrnaments").toggle($(this).scrollTop() > 200);
});
});
$(document).ready(function(){
$("#secondMenuOrnaments").hide();
});
//--=== MEREGE INTO ====--
// to happen when the below hides and show
//--================--
$(function() {
var clonedHeaderRow;
$("#full_area").each(function() {
clonedHeaderRow = $(".persist-header");
clonedHeaderRow
.before(clonedHeaderRow.clone())
.css("width", clonedHeaderRow.width())
.addClass("floatingHeader");
});
$(window)
.scroll(UpdateTableHeaders)
.trigger("scroll");
});