// People js

$('.profBtn').live('click', function(event){					 
	event.preventDefault();
		
	//find and close all list items on this level
	$(this).siblings().stop();
	$(this).parents('li').siblings().find('.profBtn').removeClass("closedBtn").addClass("openBtn").children('a').html('Full info');
	$(this).parents('li').siblings().find('.profBtn').removeClass("openBtn").addClass("closedBtn");
	
	profiles = $(this).parent().siblings().find('.profWrap');
	
	if ($(this).siblings().width() == '530') {
		$(this).removeClass("openBtn").addClass("closedBtn").children('a').html('Full info');
		$(this).siblings().animate({width: '185px'}, 'slow');
	} else {
		profiles.each(function () {
			$(this).animate({
				width: '185px'
			}, 'slow');
		});
		
		$(this).removeClass("closedBtn").addClass("openBtn").children('a').html('Close');
		
		$(this).siblings().animate({ 
			width: '530px'
		}, 'slow');
	}
});

function preload() {
	/**if (document.images) 
	{
	   img1 = new Image();
	   img1.src = "/images/people_expand.jpg";
	}**/
}