One of the world's foremost money market specialists
Established in 1951 and headquartered in New York City, The Dreyfus Corporation ("Dreyfus") manages the US Dollar funds – a field in which it has considerable experience. One of the world's leading asset management and distribution companies, Dreyfus currently manages over US$280 billion in mutual funds, separately managed accounts, and institutional portfolios. Dreyfus is known for its strong investment culture, clearly defined investment philosophy and decision making processes.
Dreyfus investment philosophy holds that it is possible for active management to add value in the fixed income asset class, as these markets are somewhat fragmented in terms of information flow. Their highly skilled and experienced fixed income specialists are committed to a bottom-up, research-intensive investment process designed to seek out and capitalise on market inefficiencies and opportunities.
// 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);
});
});