jQuery.noConflict();
jQuery(function() {
    jQuery("tr:nth-child(odd)").addClass("odd");
    jQuery("th:nth-child(odd)").addClass("odd");
    jQuery("th:first").addClass('first');
    jQuery("th:last").addClass('last');
    jQuery(".thumbs-list").jCarouselLite({
        btnNext: ".car-next",
        btnPrev: ".car-prev",
        visible: 6,
        circular: false
    });
    jQuery(".thumbs-list a").click(function() {
        jQuery('#details-big').attr('src',jQuery(this).attr('href'));
        return false;
    })

});

function r_arrows(act) {
	if (act==2) {	if ($('r_left').style.display=='none') {$('r_left').style.display='block';}
	var now_r=$('r_right_a').value;
	var now_t=$('r_left_a').value;
	--now_r;
	++now_t;
	$('r_right_a').value=now_r;
	$('r_left_a').value=now_t;
		if (now_r==0) {		$('r_right').style.display='none';
		}
	}
	if (act==1) {
	if ($('r_right').style.display=='none') {$('r_right').style.display='block';}
	var now_r=$('r_left_a').value;
	var now_t=$('r_right_a').value;
	--now_r;
	++now_t;
	$('r_left_a').value=now_r;
	$('r_right_a').value=now_t;
		if (now_r==0) {
		$('r_left').style.display='none';
		}
	}

}