$(document).ready(function() {
	$("#featuresScroll").scrollable({circular: true}).navigator().autoscroll({ autoplay: true, interval: 7000 });
	$("#flashSignupScroll").scrollable({vertical: true, circular: true, speed:150}).autoscroll({ interval: 9000 });
	$('.scrollable .items .screenshot').mouseenter(function(){
		$(this).find('.enlarge').addClass('enlargeOver');
	});
	$('.scrollable .items .screenshot').mouseleave(function(){
		$(this).find('.enlarge').removeClass('enlargeOver');
	});
	$('.screenshot a').each(function(){
		$(this).fancybox();
	});
});
