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,
        speed: 100
    });
    jQuery(".thumbs-list a").click(function() {
        jQuery('#details-big').attr('src',jQuery(this).attr('href'));
		jQuery('#details-big').attr('longdesc',jQuery(this).attr('href'));

	
        return false;
    })

});
