var purcTimeout = null;

$(document).ready(function(){
	$("li#investment-solutions").mouseover(function() {
		window.clearTimeout (purcTimeout);
		$("div#header").animate({height: '334px', marginBottom: '-32px'},200);
	});


	$("li#investment-solutions").mouseout(function() {
		purcTimeout = window.setTimeout(
			"closeMenu()", 30
		);

	});
});

function closeMenu () {
	$("div#header").animate({height: '302px', marginBottom: '0px'},200);
}

function siteOpenExternalLinksInSeperateWindow()
{ 
	$('a').each(function () {
	  var a = new RegExp('/' + window.location.host + '/');
	  if (!a.test(this.href)) {
	    $(this).click(function (event) {
	      event.preventDefault();
	      event.stopPropagation();
	      window.open(this.href, '_blank');
	    });
	  }
	});	
}
