$(document).ready(function() {
    $('#slideshow .leftpanel').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 6000
	});
	$('#slideshow .rightpanel').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 9000
	});
});

$(function () {
	if ($.browser.msie && $.browser.version < 7) return;
	$('#features li a')
		.removeClass('highlight')
		.append('<span class="hover" />').each(function () {
			var $span = $('> span.hover', this).css('opacity', 0);
			$(this).hover(function () {
			  // on hover
			  $span.stop().fadeTo(500, 1);
			}, function () {
			  // off hover
			  $span.stop().fadeTo(500, 0);
			});
		});
});
