var nextIndex = 1;

function hideInfo(carusel, item, index, state)
{
	jQuery("#slideshow-meta-text-"+index).fadeOut(500, function() {jQuery("#slideshow-meta-text-"+nextIndex).fadeIn(500);});
}

function showInfo(carusel, item, index, state)
{
	nextIndex = index;
	//jQuery("#slideshow-meta-text-"+index).fadeIn(100);
}

jQuery(document).ready(function()
{
		jQuery('#portfolio-carousel').jcarousel({
				scroll: 1,
				buttonNextHTML: '<div href="#" title="Next"></div>',
				buttonPrevHTML: '<div href="#" title="Back"></div>',
				itemVisibleOutCallback: hideInfo,
				itemVisibleInCallback: showInfo
		});
});

