function mycarousel_initCallback(carousel, item)
{
   /* Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
*/

  carousel.clip.bind('mouseenter', function(){
        carousel.stopAuto();
		$(".dida").fadeIn("fast");
		$(".didav").fadeIn("fast");
		$(".didatext").fadeIn("fast");
//		$(".jcarousel-next").fadeIn("fast");
});

 carousel.clip.bind('mouseleave', function(){
  	    carousel.startAuto();
		$(".dida").fadeOut("fast");	
		$(".didav").fadeOut("fast");
		$(".didatext").fadeOut("fast");	
//		$(".jcarousel-next").fadeOut("fast");	
    });

};


function mycarousel_itemFirstInCallbackAfterAnimation (carousel, item, idx) {
	
var thetext=item.id;
display(thetext);
	}

	
function display() {
    jQuery('.jcarousel-next').html(); //display caption
};



