var current_container = 1;
$(document).ready(function() {
    $('.jcarousel-skin-tango').jcarousel();

    $('.carousel-image').click(function(){
    
    	var src = $(this).attr('src').replace('small','orig');
        var next_container =  (current_container == 1 ) ? 2 : 1;
        
        $('.main-image-container-' + current_container).fadeOut('slow');
        $('.main-image-container-' + next_container).hide().css('backgroundImage', 'url("' + src + '")').fadeIn('slow');
        
        current_container =  (current_container == 1 ) ? 2 : 1;
	});
});
