// JavaScript Document

$(document).ready(function(){
	//$('.tab:not(:first)').hide();  
	$('#tab_2,#tab_3,#tab_4').hide();  
	$('a.tabNav').click(function(event){
		event.preventDefault();
		var newtab = $(this).attr('href');
		$(this).parents('.tab').hide();
		$(newtab).show();
	});
	$('.whatIsDiv,.whatIsDiv a').click(function(event){
		event.preventDefault();
		MM_openBrWindow('whatis.html','Envestnet','scrollbars=yes,resizable=yes,width=600,height=475');
	});
});

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function openContact() {
	MM_openBrWindow('contact.html','Envestnet','scrollbars=yes,resizable=yes,width=600,height=510');
}
function openScreenShot(shot) {
	MM_openBrWindow('shot_'+shot+'.html','Envestnet'+shot,'scrollbars=yes,resizable=yes,width=700,height=600');
}
