Investors in, and managers of, public, private, global and US only real estate investment strategies
URDANG is an investor in and manager of Public, Private, Global and U.S. only Real Estate Investment Strategies. Focused exclusively on real estate, the firm's investment approach includes top-down market/country selection and bottom-up identification of attractive properties, companies and management teams.
Strategies for adding-value include ground-up development, renovation and releasing/repositioning of privately held real estate assets. Within the publicly listed real estate marketplace, Urdang incorporates fundamental analysis along with a proprietary Relative Value Model to consistently earn excess returns while minimising risk.
As an investor and manager, Urdang success is firmly rooted in a commitment to aligning their interests with those of their clients and employees and a commitment to quality, original research.
// Boutiques nav initialisation
$(document).ready(function(){
$("h1").jQIR("gif", "/core/library/images/headings/h1/");
$("h1").jQIR("jpg", "/core/library/images/headings/h1/");
var getFiletype = function(src) {
var filetype = src.substring(src.lastIndexOf(".")+1); // get file type
return filetype;
};
var setOn = function(o) { // Function to set the "ON" nav image
o = $(o);
var src = $("img", o).get(0).src;
var filetype = getFiletype(src);
var re = new RegExp("\\."+filetype+"$", "g");
$("img", o).get(0).src = src.replace(re, "ON."+filetype);
};
var setOff = function(o) { // Function to set the "OFF" nav image
o = $(o);
var src = $("img", o).get(0).src;
var filetype = getFiletype(src);
var re = new RegExp("ON\\."+filetype+"$", "g");
$("img", o).get(0).src = src.replace(re, "."+filetype);
};
// Set active nav element
$("ul.boutiques a").each(function(){
if(mam.nav.isActive(this.href)) $(this).addClass("active");
});
// Set hover functionality for all nav elements except for the "active"
$("ul.boutiques a").not(".active").jQIR("gif", "/core/library/images/boutiques/");
$("ul.boutiques a.active").jQIR("gif", "/core/library/images/boutiques/", true);
$("ul.boutiques a").not(".active").hover(function() {
setOn(this);
}, function() {
setOff(this);
});
});