		$(document).ready(function(){

		// vertically center absolutely positioned images of different dimensions that rotate through a slideshow
	//		$("#logos img").each(
		//		function(){
			//		var t = ($(this).height())/2;
			//		var l = ($(this).width())/2;
			//		$(this).css({
			//			"margin-top" : -t,
			//			"margin-left" : -l
			//		});
			//	});
			

			$("a#next, a#prev, a.movealong, #slides a").click(function() { 
            	return false;
			});

			$(".swap").hover(function() { 
            	$(this).addClass("hover");
			}, function() {
            	$(this).removeClass("hover");
			});			

			$("#logos").cycle({ 
				delay:  1500, 
				speed:  1000,
				pause: 1
			}); 
			
 		});
