$(document).ready( function () {
	_markActive();
	
	$(".sameHeight").equalHeights(true);
	
	$(".sameHeight .itemsContainer").each (
		function() {
			$(this).height($(this).parent().height());
		}
	);
})

function _markActive() {
		var $el = $('div.main-content:eq(0)');
		var identifiers = {
			"homepage"						: "home",
			"portfolio"						: "portfolio",
			"advisory" 						: "advisory",
			"sponsorship"					: "sponsorship",
			"investment"					: "investment"
		};
		
		var menuItemId = identifiers[ $el.attr("id") ];
		
		if ( menuItemId != null ) {
			
			$("#menu #" + menuItemId + "Menu" ).addClass("item" + menuItemId + "-active");			
		};
	
}