// JavaScript Document
$(document).ready(function(){
	$('#exhibitors-vertical').addClass('scrollable-verticle');
	
	$('#pop-stories > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

	

	
});														

// execute your scripts when DOM is ready. this is a good habit 
$(function() {                      
		// initialize scrollable
		$("div.scrollable-verticle").scrollable({
				interval: 2000,				
				loop: true,				
				speed: 400,				
				onBeforeSeek: function() {
					this.getItems().fadeTo(300, 0.2);
				},				
				onSeek: function() {
					this.getItems().fadeTo(300, 1);
				},				
				vertical:true
		});
		$("div.scrollable-horizontal").scrollable({
				interval: 2000,				
				loop: true,				
				speed: 400,				
				onBeforeSeek: function() {
					this.getItems().fadeTo(300, 0.2);
				},				
				onSeek: function() {
					this.getItems().fadeTo(300, 1);
				}
		});		
}); 