$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'scrollHorz', 
		speed: 2000, 
		timeout: 10000,
		easing: 'easeOutExpo',
		next: 'a.slide-next',
		prev: 'a.slide-prev',
		slideExpr: '.slide'
	});
    $('.boxslide').cycle({
		fx: 'fade', 
		speed: 1000, 
		timeout: 50000,
		next: 'a.bnext',
		prev: 'a.bprev',
		easing: 'easeOutExpo',
		slideExpr: '.boxed'
	});

	$('#bulletinbox, #packbox, #infobox, #vidbox').hide();
	$('a#tabnews').click(function() {
		$('#newsbox').show('slow');
		$('#bulletinbox').hide('fast');
		$('#infobox').hide('fast');
		$('#packbox').hide('fast');
		$('#vidbox').hide('fast');
		$('a#tabnews:eq(0)').addClass('active');
		$('a#tabbulletin:eq(0)').removeClass('active');
		$('a#tabinfo:eq(0)').removeClass('active');
		$('a#tabpack:eq(0)').removeClass('active');
		$('a#tabvid:eq(0)').removeClass('active');
		return false;
	});
	$('a#tabbulletin').click(function() {
		$('#newsbox').hide('fast');
		$('#bulletinbox').show('slow');
		$('#infobox').hide('fast');
		$('#packbox').hide('fast');
		$('#vidbox').hide('fast');
		$('a#tabnews:eq(0)').removeClass('active');
		$('a#tabbulletin:eq(0)').addClass('active');
		$('a#tabinfo:eq(0)').removeClass('active');
		$('a#tabpack:eq(0)').removeClass('active');
		$('a#tabvid:eq(0)').removeClass('active');
		return false;
	});
	$('a#tabinfo').click(function() {
		$('#newsbox').hide('fast');
		$('#bulletinbox').hide('fast');
		$('#infobox').show('slow');
		$('#packbox').hide('fast');
		$('#vidbox').hide('fast');
		$('a#tabnews:eq(0)').removeClass('active');
		$('a#tabbulletin:eq(0)').removeClass('active');
		$('a#tabinfo:eq(0)').addClass('active');
		$('a#tabpack:eq(0)').removeClass('active');
		$('a#tabvid:eq(0)').removeClass('active');
		return false;
	});
	$('a#tabpack').click(function() {
		$('#newsbox').hide('fast');
		$('#bulletinbox').hide('fast');
		$('#infobox').hide('fast');
		$('#packbox').show('slow');
		$('#vidbox').hide('fast');
		$('a#tabnews:eq(0)').removeClass('active');
		$('a#tabbulletin:eq(0)').removeClass('active');
		$('a#tabinfo:eq(0)').removeClass('active');
		$('a#tabpack:eq(0)').addClass('active');
		$('a#tabvid:eq(0)').removeClass('active');
		return false;
	});	
	$('a#tabvid').click(function() {
		$('#newsbox').hide('fast');
		$('#bulletinbox').hide('fast');
		$('#infobox').hide('fast');
		$('#packbox').hide('fast');
		$('#vidbox').show('slow');
		$('a#tabnews:eq(0)').removeClass('active');
		$('a#tabbulletin:eq(0)').removeClass('active');
		$('a#tabinfo:eq(0)').removeClass('active');
		$('a#tabpack:eq(0)').removeClass('active');
		$('a#tabvid:eq(0)').addClass('active');
		return false;
	});
});
