$('html').addClass('js');

// Set up banner.
$('div#banners ul').cycle({
	fx:      'scrollUp',
	easing:  'easeinout', 
	speed:   800, 
	timeout: 0,
	pause:   1, 
	pager:   'div#bannerPager', 
	sync: true
});

var tabNames;

$(document).ready(function()
{
	tabNames = $('div#bannerPager span');
	
	$('div#bannerPager a').each(function(index)
	{
		if(index == 0)
			$(this).addClass('active');
		$(this).html(tabNames[index]);
		$(tabNames[index]).fadeIn(1000);
	});
	
	$('div#bannerPager a').click(function(e)
	{
		e.preventDefault();
		
		$('div#bannerPager a').removeClass('active');
		$(this).addClass('active');
	});
});