$('document').ready( function(){
	$('#slideshow').cycle({ 
		fx:     'fade', 
		timeout: 600,
    speed:  2500,
		cleartype: true
	});
//	$('#supporters').animate({ 
//    "left": "-1000px"}, 20000 
//	);
  $("#swing-right").hover(function(){
    $("#supporters").animate({"left": "-=130px"}, 500);
  });

  $("#swing-left").hover(function(){
    $("#supporters").animate({"left": "+=130px"}, 500);
  });
  $("#swing-right").click(function(){
    $("#supporters").animate({"left": "-=130px"}, 500);
  });

  $("#swing-left").click(function(){
    $("#supporters").animate({"left": "+=130px"}, 500);
  });


   //$('#supporters').animate({"left": "-500px"}, 5000);
});

