function writeEmail(name){
	emailString = "<a href='mailto:" + name + "@rosemountcapital.com'>" + name + "@rosemountcapital.com</a>";
	return emailString;
}

function MM_jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

$(document).ready(function() {
	$("#mainNav li.top").hover(
		function() {
			$("#mainNav li.active ul").hide();
	    	$(this).children("ul").show();
	    }, 
	    function() {
			$(this).children("ul").hide();
	    }
	);
	
	$("#mainNav").hover(
		function() {
	    }, 
	    function() {
			$("#mainNav li.active ul").show();
	    }
	);
});