//if (!($('#edit-header'))) {
if ($('#edit-header').length > 0) {
}
else {
  $(document).ready(function() {
    $('.bottom-image-item')
     .bind('mouseover mouseout', function(event) {
        $(this).toggleClass('bottom-image-desc-hilite');
        $(this).find('.bottom-image-description').toggleClass('bottom-image-desc-hilite');
        $(this).find('.bottom-image-inner-content').toggleClass('bottom-image-desc-hilite');
        $(this).find('.bottom-image-arrow').toggleClass('bottom-image-arrow-hilite');
    });
  });
}
