﻿// JavaScript Document
$(document).ready(function() {    
	window.$scrollStrip = $(".scrollable").scrollable({speed: 1500}).circular().navigator().autoscroll({autoplay:true, steps:1, interval: 4800, api: true});    
	$('.ttip').tooltip({fadeIn: 'fast', bordercolor: '#000000', bgcolor:'#000000', fontcolor: '#fcb801', fontsize:'17px'});        
	$('#play_trigger').click(function(){        
		$scrollStrip.play();        
		$(this).hide();        
		$('#pause_trigger').show();        
		return false;    
	});    
	$('#pause_trigger').click(function(){        
		$scrollStrip.stop();        
		$(this).hide();        
		$('#play_trigger').show();        
		return false;    
	}); 
}); 
