$(function() {
  $(document).ready(function(){
    $('.slider').cycle({
        fx:     'fade',
	    speed:  1000,
        timeout: 1000
    });
  });
  if(imageCounter <= 1) { $('.next-image').hide(); }
});
$(function(){
	$(".client-icons li a").hover(function(){
		$(this).children("span").fadeOut();
	}, function(){
		$(this).children("span").fadeIn();
	})
});
