
function loadExtranettWelcome() {
	
	jQuery("#loginformHeaderContainer").load("/blocks/2009/ekstranettVelkommen.php");
	
}

function loadExtranettInfo() {

	jQuery("#ekstranettInfoContainer").load('/blocks/2009/ekstranettInfo.php');

}

function setContentHeight(c,t) {

	var antall = jQuery(c).siblings().length;
	var height = 0;
	
	for(var i=0;i<=antall;i++) {
	
		if( jQuery(c + ' ' + t).eq(i).height() > height ) {
		
			height = jQuery(c + ' ' + t).eq(i).height();
	
		
		}
	
	}
	
	for(i = 0;i<=antall;i++) {
		
		jQuery(c + ' ' + t).eq(i).height(height);
	
	}

}