﻿jQuery(document).ready(function() {
    jQuery(".GalleryThumb").hover(
      function() {
          jQuery(this).css("background-color", "#54b94a");
      },
      function() {
          jQuery(this).css("background-color", "#FFFFFF");
      }
    );

    jQuery(".GalleryThumb").click(function() {
        jQuery(this).hover(
          function() {
              jQuery(this).css("background-color", "#54b94a");
          },
          function() {
              jQuery(this).css("background-color", "#fff");
          }
        );
        jQuery(this).css("background-color", "#54b94a");
        //Implement CMS Team's Lightbox Code and on close of ligthbox, execute the following:
        //jQuery(this).css("background-color", "#FFFFFF");        
    });
});
