function initTeamPage(){
	$(".teamMember_desc").css({'z-index':10,'position':'absolute'});
	$(".teamMember").hover(function(){
	// show info
		pos = $(this).offset();
		$('div.teamMember_desc').hide();
		if(pos.left>450){
			floatPos = pos.left-$(this).parent('.wp-caption').next('div.teamMember_desc').width()-20;
		} else {
			floatPos = pos.left+$(this).width();
		}
		$(this).parent('.wp-caption').next('div.teamMember_desc').css({'left':floatPos,'top':pos.top}).fadeIn();		
	},function(){
	// hide info
		$(this).parent('.wp-caption').next('.teamMember_desc').fadeOut();
	});
}
function initCopyright(){
	$(".disclaimer_desc").css({'z-index':10,'position':'absolute'});
	$(".disclaimer").click(function(){return false;}).hover(function(){
	// show info
		pos = $(this).offset();
		$('div.disclaimer_desc').hide();
		
		$(this).next('div.disclaimer_desc').css({'left':pos.left,'top':pos.top-35-$(this).next('div.disclaimer_desc').height() }).fadeIn();		
	},function(){
	// hide info
		$(this).next('.disclaimer_desc').fadeOut();
		$(this).next('.disclaimer_desc').fadeOut();
	});
	// also use this opportunity to initalise the tabs if this page has them
	$( "#tabs" ).tabs({
		select: function(event, ui){
			if(ui.index==0){
				$('div#tech').show();
			} else {
				$('div#tech').hide();
			}
		}
	});
}
