var nav = jQuery('.secondary-navigation');
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 136) {
nav.css("position","fixed");
nav.css({"width":(jQuery('#header').width()+'px')}); //header compensation
jQuery('#header').css("height","136px");
} else {
nav.css("position","");
jQuery('#header').css("height","");
}
});