Active fundamental equity manager; core, growth and value styles
The Boston Company Asset Management LLC ("The Boston Company"), based in Boston, USA, uses a bottom-up approach to stock selection, focusing on fundamental research in a process-driven environment.
The firm specialises in US and international equity disciplines covering value, growth, core and market-neutral strategies, as well as balanced portfolios for a wide range of institutional clients. The Boston Company's value, growth and core strategies are implemented in a consistent and disciplined fashion, using knowledge gained from more than 30 years of investment success.
This time-tested approach, coupled with The Boston Company's breadth of experience, lends itself not just to traditional long-only investing, but also to shorting stocks. Most recently The Boston Company has extended its product range to include an innovative global market-neutral strategy.
// 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);
});
});