$(document).ready(function() {
function shift_text_nav() {
     var top = $(window).scrollTop();
     var t = $('#secondary').offset().top;
	 var t = t + $('#secondary').height();
     var left = $('#sidebar').offset().left;
     if (top > (t)) {
          var text_height = $('#content-wrapper').height();
		  var widget_height = $('#secondary').height();
          var nav_height = $('.form-w').height();

          if(t + widget_height + text_height - nav_height - 10 < top){
               $('.form-w').css({'position':'relative','margin-left':'0px','top':'0px','left':'0px'});
			    $('#gksm-custom-menu-widget-2').css({'margin-top':'0px' });
          }else{
			  $('#gksm-custom-menu-widget-2').css({'margin-top': nav_height + 'px' });
               $('.form-w').css({'position':'fixed','margin-left':'0px','top':'10px','left':left+'px'});
          }
     } else {
           $('.form-w').css({'position':'relative','margin-left':'0px','top':'0px','left':'0px'});
		   $('#gksm-custom-menu-widget-2').css({'margin-top':'0px' });
     }
}

$(window).scroll(function() { shift_text_nav(); });
$(window).resize(function() { shift_text_nav(); });
shift_text_nav();
}); 
