function video_initCallback(carousel){
	//Manual Move
	jQuery('#dv_videoRightNext').bind('click', function() {
		carousel.next();
		return false;
	});
	
	// Pause autoscrolling if the user moves with the cursor over the clip.
	carousel.clip.hover(function() {
		carousel.stopAuto();
	}, function() {
		carousel.startAuto();
	});
};
 

function fn_setearVideo(){
	$('#dv_videoCenter').show();
	jQuery('#dv_videoCarousel').jcarousel({
		auto: 6,
		wrap: 'last',
		initCallback: video_initCallback
	});
}
