$(function() {
	
	$(".scrollable").scrollable({circular: true}).autoscroll({interval: 6000});


	$(".banners li").hover(function () {
		
		$(this).animate({ marginTop: "-135px", height: '224px' }, 1000 );
		$(this).find("a").animate({ height: '224px' }, 1000);
		$(this).find("a").css("background-position", "0 -90px");	
		$(this).find("a span").css("display", "block");			
		$(this).find("a img").css("display", "block");			

	},function () {
		
		$(this).animate({ marginTop: "0", height: '90px' }, 1000 );
		$(this).find("a").animate({ height: '90px' }, 1000, function () {
			$(this).css("background-position", "0 0");			
			$(this).find("span").css("display", "none");		
			$(this).find("img").css("display", "none");			
		});

	});


});
