diff --git a/htdocs/wp-content/themes/lawcarta/assets/js/promoImage.js b/htdocs/wp-content/themes/lawcarta/assets/js/promoImage.js
new file mode 100644
index 0000000..620f0a1
--- /dev/null
+++ b/htdocs/wp-content/themes/lawcarta/assets/js/promoImage.js
@@ -0,0 +1,17 @@
+$(document).ready(function () {
+ function promoTopNext() {
+ if ($('.promo-backs').length) {
+ setTimeout(function () {
+ var current = $('.promo-bg.current');
+ current.removeClass('current');
+ if (current.next().length) {
+ current.next().addClass('current');
+ } else {
+ current.parent().find('.promo-bg:first-child').addClass('current');
+ }
+ promoTopNext();
+ }, 4500);
+ }
+ };
+ promoTopNext();
+});
\ No newline at end of file
diff --git a/htdocs/wp-content/themes/lawcarta/footer.php b/htdocs/wp-content/themes/lawcarta/footer.php
index 72c5f65..4b62381 100644
--- a/htdocs/wp-content/themes/lawcarta/footer.php
+++ b/htdocs/wp-content/themes/lawcarta/footer.php
@@ -74,6 +74,7 @@ require_once 'inc/walker-nav-menu.php';
+