$(document).ready(function() {
  $('.slideshow').cycle({
	  fx: 'scrollLeft',
	  speed: 500,
	  pager:  '#orbs',
	  timeout:0
  });
});

$(document).ready(function(){
  $("a.fade").hover(
	function() {
	$(this).stop().animate({"opacity": ".65" }, "fast");
	},
	function() {
	$(this).stop().animate({"opacity": "1" }, "slow");
  });
});

