$(document).ready(function(){

	$(function() {
		$(".image_select").each(function() {
			var element = this;
			var id = element.id;
			
			var index = id.lastIndexOf('_');
			var identifier = id.substring(index + 1);
			
			$(function() {
			    $("#image_select_"+identifier).jCarouselLite({
			        btnNext: "#image_next_"+identifier,
			        btnPrev: "#image_prev_"+identifier,
			        circular: false,
			        visible: 2
			        
			    });
			});
	
		});
		
		
	});
	
	
	
});

