/**
 * We use the initCallback callback
 * to assign functionality to the controls
 */
function carouselphotos_initCallback(carousel) {
    $('.jcarousel-control-photo a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
		$('.jcarousel-control-photo a').removeClass('On');
		$(this).addClass('On');
        return false;
    });
};
function carouselvideos_initCallback(carousel) {
    $('.jcarousel-control-videos a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
		$('.jcarousel-control-videos a').removeClass('On');
		$(this).addClass('On');
        return false;
    });
};
