$(function() {
    $('a.branch-infoLink').click(function() {
        $('<iframe src="/about/branch-finder/branch-info?slugs[0]='+$(this).attr('rel')+'&type=ea" frameborder="no" border="no"></iframe>')
            .modal({'containerId':'branch-map-modal-1'});
        
        return false;
    });
    
    $('a.branch-proxyInfoLink').click(function() {
    	$('<iframe src="/buying/property-branch-proxy?agentBranch='+$(this).attr('rel')+'&type=ea" frameborder="no" border="no"></iframe>')
            .modal({'containerId':'branch-map-modal-1'});
        
        return false;
    });
});