
function off($ID){
	$($ID).fadeOut();
}

function  carousel_init_a(carousel) {

    jQuery('.recommendcarousel-control a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
        return false;
    });
		
	 $('.recommendcarousel-control a').corner('bottom 4px');		
	 
    jQuery('#recommendcarousel-next').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('#recommendcarousel-prev').bind('click', function() {
        carousel.prev();
        return false;
    });
}

function carousel_loada_a(carousel, state){
	//console.log(carousel);
	var $id_element = '#rcc' + carousel.last;
	$('.recommendcarousel-control a').removeClass('rcc_hover');		
	$( $id_element ).addClass('rcc_hover').fadeIn("slow");
}
