function GetTop()
{
	return(!document.body.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
}

function People(ppp)
{
	var layout = '';
	
	$('#people').hide();
	$('#people').css({ top: GetTop()+150, marginTop:0 });
	
	layout = '<img src="/files/Image/people/' + peopling[ppp][3] + '" /><br /><table width="90%" style="margin:0 auto;"><tr><td>';
	if (ppp > 1) {
		layout += '<a href="#" onclick="return(People(' + (ppp-1) + '));"><img src="/images/a1.gif" alt="" /></a>';
	}
	layout += '</td><td align="center">' + peopling[ppp][0] + ' - ' + peopling[ppp][1] + ' | <a href="mailto:' + peopling[ppp][2] + '">' + peopling[ppp][2] + '</a></td><td align="right">';
	if (peopling[ppp+1]) {
		layout += '<a href="#" onclick="return(People(' + (ppp+1) + '));"><img src="/images/a2.gif" alt="" /></a>';
	}
	layout += '</td></tr></table>';
	
	$('#people div').html(layout);
	$('#people').fadeIn();return(false);
}