$(document).ready(function() {
/////////////////////////////////////////////////
$('#cbox').hide();
$('#content').hide().fadeIn(1000);

// steve
/////////////////////////////////////////////////
$('#content_steve').cycle({
fx: 'scrollDown', 
// random: false,
// pause: true, // enable "pause on hover" 
speed:  400,
timeout:  0,
next: '#content_steve'
});

$('#content_steve').click(function() {
$('#cbox').show();
$('#cbox .jeff').fadeOut(400, function(){ 
$('#cbox .steve').fadeIn(800);
});
});    

// jeff
/////////////////////////////////////////////////
$('#content_jeff').cycle({
fx: 'scrollUp', 
// random: false,
// pause: true, // enable "pause on hover" 
speed:  400,
timeout:  0,
next: '#content_jeff'
});

$('#content_jeff').click(function() {
$('#cbox').show();
$('#cbox .steve').fadeOut(400, function(){ 
$('#cbox .jeff').fadeIn(800);
});
});

}); // end doc ready