
$(document).ready(function(){
$('#slider1')
  .anythingSlider({
   width          : 890,
   height         : 354,
   autoPlay       : true,
   buildNavigation: false,
   delay          : 7000,
   theme          : 'metallic',
   navigationFormatter : function(i, panel){ // add thumbnails as navigation links
    return '<img src="/wp-admin/jQuery/AnythingSlider/images/th-slide-' + ['civil-1', 'env-1', 'civil-2', 'env-2'][i - 1] + '.jpg">';
   }
  })
  // target all images inside the current slider
  // replace with 'img.someclass' to target specific images
  .find('.panel:not(.cloned) img') // ignore the cloned panels
   .attr('rel','group')            // add all slider images to a colorbox group
});

