jQuery(function($){
	
	$(".select-maps").click(function(e){
		
		$('.select-maps').unbind('click');
		e.preventDefault();
		
		var divHref = $(this).attr("href");
		$(".content-maps").hide();
		$(divHref).fadeIn(200);
		scrollbottom = $(document).height() - $(window).height();
		$('html, body').animate( {scrollTop : scrollbottom }, 600);
		
		return false;
	});

});

