jQuery(function($) {
	$("#twitter-button").hover(
		function(){
			$(this).addClass("pointer");
			$("#twitter-sub-roll").show();
		},
		function(){
			$(this).removeClass("pointer");
			$("#twitter-sub-roll").hide();
		}
	);
  $('.slideshow').cycle({
  	fx: 'fade'
  });
	$('li.headlink').hover(
		function() { 
			$('ul', this).css('display', 'block');
			$('ul', this).css('left', '303px')
		},
		function() { $('ul', this).css('display', 'none'); }
	);
});