
$(document).ready(function(){
	var navbarHeight= $('.navbar').height()
	$("#map_canvas").height($(window).height() - $('.navbar').height());
	$("#map_canvas").css( 'margin-top' , navbarHeight );
});

$(document).ready(function(){
		$('.autocomplete-suggestions').width($('#autocomplete').outerWidth());
		
		
		
		
		
		/*$('#autocomplete').focus(function() {
		$('.autocomplete-suggestions').show();
	});*/

	/*	$('#autocomplete').focusout(function(){
		$('.autocomplete-suggestions').hide();
		});

		$('#autocomplete').blur(function(){
		$('.autocomplete-suggestions').hide();
		});*/

	
		
		
		/*$('#autocomplete').on('input',function (){
			getAddressSuggestions($(this).val());
		});
		*/
		
});