$(document).ready(function() {
	// easy toggle for categories
	$('#triggerCatID').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID2').click(function() {
		$(this).toggleClass('focus');
		$('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
});

$(function(){$('#slideshow').cycle({fx: 'fade', speed:1500, timeout:5500});});
$(function(){$('#slideshow2').cycle({fx: 'fade', speed:1500, timeout:7000});});
//$(document).ready(function(){
//$("#nav-box li a span").css({ opacity: "0.0", display: "block" });
//$("#nav-box li a span").hover(function(){$(this).fadeTo(100, 1.0);}, function(){$(this).fadeTo(300, 0.0);} );
//$("#nav-box li a.current span").hide();
//});