// JavaScript Document

document.observe("dom:loaded", function() {
	$('featured_employee_img').observe('click', (function() { showFeaturedEmployee(); }));
	$('featured_employee_link').observe('click', (function() { showFeaturedEmployee(); }));
});


function showFeaturedEmployee() {
	sw = document.viewport.getWidth();
	sh = document.viewport.getHeight();
	wx = Math.round((sw/2) - (776 / 2));
	wy = Math.round(((sh/2) -100) - (413 / 2));
	$('fe_container').style.left = wx+'px';
	$('fe_container').style.top = wy+'px';
	$('accesspoint_shade').show();
	$('fe_container').style.display = 'block';
}