// JavaScript Document
$(document).ready(function(){
													 
	$('#checkin2010-vertical').addClass('scrollable-verticle');			
	$('#checkinAsia-vertical').addClass('scrollable-verticle2');		
	
	
});														
									

// execute your scripts when DOM is ready. this is a good habit 
$(function() {                      
	$(".scrollable-verticle").scrollable({ 
			autoplay:true,
			interval: 2000,				
			loop: true,				
			speed: 500,				
			onBeforeSeek: function() {
				this.getItems().animate(300, 0.2);
			},				
			onSeek: function() {
				this.getItems().animate(300, 1);
			},				
			vertical:true
	});
		
	$(".scrollable-verticle2").scrollable({ 
			autoplay:true,
			interval: 2000,				
			loop: true,				
			speed: 500,				
			onBeforeSeek: function() {
				this.getItems().animate(300, 0.2);
			},				
			onSeek: function() {
				this.getItems().animate(300, 1);
			},				
			vertical:true
	});		
		
}); 