User:NovaHawk/ps

From Brickipedia, the LEGO Wiki
75152-pilot2.png
Stormtrooper-75060.png
RebelsStormtrooperNoHelmet.png


$( "#ImperialHovertankPilot-1 .bar .prev" ).click(function() {
  $("#ImperialHovertankPilot-1 .GalleryScrollerImg1").is(":visible"){
    $("#ImperialHovertankPilot-1 .GalleryScrollerImg1").hide();
    $("#ImperialHovertankPilot-1 .GalleryScrollerImg3").show();
  }
  $("#ImperialHovertankPilot-1 .GalleryScrollerImg2").is(":visible"){
    $("#ImperialHovertankPilot-1 .GalleryScrollerImg2").hide();
    $("#ImperialHovertankPilot-1 .GalleryScrollerImg1").show();
  }
  $("#ImperialHovertankPilot-1 .GalleryScrollerImg3").is(":visible"){
    $("#ImperialHovertankPilot-1 .GalleryScrollerImg3").hide();
    $("#ImperialHovertankPilot-1 .GalleryScrollerImg2").show();
  }
$("h1").css("color", "red");
});