$(function() {
	$('#baby a').lightBox({
		overlayBgColor: '#7e2f7b'
	});
	$('#staff a').lightBox({
		overlayBgColor: '#7e2f7b'
	});
	
	// change the stopping number when new apples are added
	for(i = 1; i < 7; i++)
	{
		
		apple = "#apple" + i;
		
		$(apple).hover(
		function()
			{
				applebox = "#" + $(this).attr("id") + "box";
				$(applebox).css('visibility', 'visible');
			},
			function()
			{
				applebox = "#" + $(this).attr("id") + "box";
				$(applebox).css('visibility', 'hidden');
			});
	}
});