$(function()
{
	if ($.browser.msie)
	{
		DD_belatedPNG.fix(".recruit .cbox-top, .recruit .txtbox, .recruit .cbox-bottom");
	}
	
	var setStaffProfile = function(index)
	{
		$.get('/blog/profile0' + index + '/',
			function(data)
			{
//				console.log($('#profile0' + index + ' > .profile-scroll'), data);
				$('#profile0' + index + ' > .profile-scroll').html(data);
			}
		);
	};
	
	for (var i = 1; i <= 7; i++)
	{
		setStaffProfile(i);
	}
	
	$.get('/blog/recruit/',
		function(data)
		{
//			console.log(data);
			$('.recruit .txtbox').html(data);
		}
	);
});