$(document).ready(function() {
	//$("#textclaim").typewriter();
	//$("#my-container").scrambledWriter();
	$("#ultimaprova").animate({
			  left: 0,
		      top:10
			}, 2000 );



	$(".orangetab").mouseover(function () {
		$(this).animate({
			top: -30,
			color: '#4a555f'
		}, { queue:false })
		//$(this).children(".contenutoHide").show()

	});
	$(".orangetab").mouseout(function () {
		$(this).animate({
			top: -20,
			color: '#ffffff'
		}, { queue:false })

		//$(this).children(".contenutoHide").hide()
	});
		$(".case").mouseover(function () {
				$(this).addClass('hover');


		});
			$(".case").mouseout(function () {
				$(this).removeClass('hover');

			});
$("#scroller").scrollable({circular: true, mousewheel: true}).navigator().autoscroll({
	interval: 3000
});

});



