$(document).ready(function() {
    $('#slideshow').cycle({ fx:'fade', timeout:5000, cleartype:true,
		cleartypeNoBg:true });
	$("#events").jCarouselLite({ speed:1000, visible:7, btnPrev:'#relatedprev',
		btnNext:'#relatednext', circular:false });
	$('#speakerlist a,#slideshow a').fancybox({ overlayOpacity:0.7,
		centerOnScroll:true, transitionIn:'elastic', transitionOut:'elastic', ajax:{
			type:'POST',
			data:{}
		}
	});
	$('#speakerlist a').tooltip({ track:true, showURL:false, bodyHandler:function() {
			if ($(this).hasClass('speakername')) {
				return $(this).html();
			} else {
				return $(this).next().html();
			}
		}
	});
		
});
