/**
 * @author jtuomala
 */
$(document).ready(function(){
	$("#products > ol").tabs({ fx: { opacity: 'toggle', duration: 'slow' } });
	// enable circular scrollables with a click handler
	$(".scroll").scrollable({ circular: true }).autoscroll({ autoplay: true, interval: 5000 }).click(function() {
		$(this).data("scrollable").next();		
	});
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid').hover(function(){
	$(".boxcaption", this).stop().animate({bottom:'0px'},{queue:false,duration:160});
	}, function() {
	$(".boxcaption", this).stop().animate({bottom:'-100px'},{queue:false,duration:160});
	});
});
