/**
 * @author Joz
 */
$(document).ready(function(){
		
	$("ul.address a").bind("click", function (e) {
		var obj = $(this);
		//$("#info").html("Momentje...");
		// $("#info").slideUp();
		
		$.ajax({
		  type: "POST",
		  url: SITEROOT+'contact/info/',
		  data: { 	
		  			id: obj.attr("id")
		  },
		  dataType: "json",
		  success: function(response){
					
					if (response.errors) {
						$("#info").html(response.errors);
						
					} else {
						// show change
						$("#info").html(response.html);
						// $("#info").slideDown();
					}
					
					return false;
					
				}
		});
		
		return false;
	});
		
});