El motivo no entiendo porque no funciona.
Código Javascript
:
Ver originalvar position;
$(".systems-gallery").hide();
$(".cosas li").click(function() {
position = $(this).index();
$(".cosas").hide();
$(".systems-gallery").show();
$(".systems-gallery li").hide();
$(".systems-gallery li:eq("+ position +")").show();
$(".systems-gallery li:eq("+ position +")").addClass("focus");
});
$(".close-systems-container").click(function() {
$(".systems-gallery").hide();
$(".cosas").show();
});
$(".rightBtn").click(function() {
var actual = $("li.focus"),
sig = actual.next().is("li") ? actual.next() : $("li").first();
actual.removeClass("focus");
actual.hide();
sig.addClass("focus");
sig.show();
});