$(document).ready(function() {
	$('a.lightimg').click(function() {
		$('#expanded').html('<div class="info"><img style="margin-top:'+t+'px" src="'+$(this).attr("longdesc")+'" />'+$(this).parents('.person').find('.staffinfo').html()+'</div>');
		var t = $(this).parents('.person').find('.staff-name').html();
		$('#expanded').dialog({
			title: t,
			height: 500,
			width: 600,
			modal: true,
			draggable: false,
			resizable: false,
			closeOnEscape: true,
		});
		return false;
	});
	$('.ui-widget-overlay').live('click', function() {
		$('#expanded').dialog('close');
	});
	
  $('div.staffgroup').each(function(){
    var per = $(this).find('.person').length;
    if ((per % 3) == 1) {
      $(this).find('.person:last').addClass('center');
    }
    if ((per % 3) == 2) {
      $(this).find('.person:gt('+(per-3)+')').addClass('wide2');
    }
  });
});
