/*  ---------------------------
    Keep the map fixed to the top when we need it to do so.
*/

  $(document).ready(function(){
      // -----------------------------------------
		  // SCROLL CODE for map
		  //
		  var mapFixed = false;
		  
		  $(window).scroll(function () { 
        
        var mapPosition = $("#hitotoki_map2").offset().top - $(window).scrollTop() | 0;
        
        //console.log("Hitotoki_map2 Offset:"+$("#hitotoki_map2").offset());
        //console.log(mapPosition + " : " + mapFixed);        

        
        if(!mapFixed && (mapPosition <= 10)) {
          //console.log("FIXED!");
          $("#map_bg_wrap").css({'position' : 'fixed', 'top' : '10px'});
          mapFixed = true;
        }
        
        if(mapFixed && (mapPosition > 10)) {
          //console.log("RELATIVE!");
          $("#map_bg_wrap").css({'position' : 'relative'});
          mapFixed = false;
        }
      });
    });
