jQuery(function($) {
	
    $(".em-slider").each(function() {
		$('ul.products-grid:first', this).append($('ul.products-grid:not(:first)', this).children()).children().removeClass('first last');
		$('ul.products-grid:not(:first)', this).remove();
		$(this).append('<div class="control"><a class="prev">Previous</a><a class="next">Next</a></div>');
		
		$(".widget-products", this).jCarouselLite({
			visible:5, 
			btnPrev:'.em-slider .control .prev', 
			btnNext:'.em-slider .control .next',
			speed: 800
		});
	});
});

