(function($) {
$(function() {

$('.pxs_container').bind('slide', function(e, data) {
	$('#bio').fadeOut('slow');
	$('#blog').fadeOut('slow');
	if (data.slide > 0) {
		$.ajax({
			type: 'POST',
			url: '/ajc/ajax',
			dataType: 'json',
			success: ajaxCompleted,
			data: {slider_value: data.slide}
		});
	}
});

function ajaxCompleted(data) {
	$('#bio').replaceWith("<div id='bio'>"+data.bio+"</div>");
	$('#bio').show();
	//$('#bio').fadeIn('slow');

	$('#blog').replaceWith("<div id='blog'>"+data.blog+"</div>");
	$('#blog').show();
	//$('#blog').fadeIn('slow');

	/*
    $('#bio').fadeOut('fast', function() {
      var div = $("<div id='bio'>"+data.bio+"</div>").hide();
      $(this).replaceWith(div);
      $('#bio').fadeIn('fast');
    });

  $('#blog').fadeOut('fast', function() {
      var div = $("<div id='blog'>"+data.blog+"</div>").hide();
      $(this).replaceWith(div);
      $('#blog').fadeIn('fast');
    });
    */
}

});
})(jQuery);;

