//var name = "#left-col";
//var menuYloc = null;
	
	
$(document).ready(function() {

$('.studio-more-btn').click(function() {

  $('.studio-more-btn').hide();
  $('.hidden').show();


})


 var top = $('#left-col').offset().top - parseFloat($('#left-col').css('marginTop').replace(/auto/, 0));
  $(window).scroll(function (event) {
    // what the y position of the scroll is
    var y = $(this).scrollTop();
  
    // whether that's below the form
    if (y >= top) {
      // if so, ad the fixed class
      $('#left-col').addClass('fixed');
    } else {
      // otherwise remove it
      $('#left-col').removeClass('fixed');
    }
  });
 

  });



