//-- homepage slideshow
  $(document).ready(function() {
    $('#services-slideshow li:gt(0)').hide();
    setInterval(function(){
      $('#services-slideshow li:first-child').fadeOut("slow")
         .next().fadeIn("slow")
         .end().appendTo('#services-slideshow');}, 
      9000);
	  
	$('#services-caption li:gt(0)').hide(); 
	setInterval(function(){
      $('#services-caption li:first-child').fadeOut("slow")
         .next().fadeIn("slow")
         .end().appendTo('#services-caption');}, 
      9000); 
	
 });     


