$(document).ready(function() {
	
	/* Выбор офиса */
	$('.b-office-address A.g-a-dotted').click(function(){
		$('.b-office-address .cur').removeClass('cur');
		$(this).parent().addClass('cur');
		$("#map").load('http://transfert-vrn.ru/contact/ajax.html', {id: $(this).attr('id')});
		return false;
	});
	
});