// JavaScript Document
var mapOffSetTop ;
function setMapInitialPosition(){
	mapOffSetTop = jQuery('#map_canvas').offset().top;
	
	jQuery(window).scroll(function() {
		if(jQuery(document).scrollTop() > mapOffSetTop ){
			var new_push = jQuery(document).scrollTop() -mapOffSetTop ;

			//jQuery('#map_pusher').animate({height:new_push},10);
			jQuery('#map_pusher').css('height',new_push);			
		}
		else{
			//jQuery('#map_pusher').animate({height:0},10);
			jQuery('#map_pusher').css('height',0);

		}
	
	});	
}


