// JavaScript Document
jQuery(function($) {
	var tabContainers = $('div.tabs > div');
	tabContainers.hide().filter(':first').show();
	$('div.tabs span.tabNavigation a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div.tabs span.tabNavigation a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
	$('div.button-container a').mousedown(function(){
	  $(this).addClass('button-active');
	}).mouseup(function(){
	  $(this).removeClass('button-active');
	}).mouseout(function(){
	  $(this).removeClass('button-active');
	});
	$('#slideshow-content').cycle({
		timeout: 7000,
		speed: 500,
	});
});

