// default

//
$(function(){
	
	// billboard
	$('.auto').cycle({ 
		fx:				'fade', 
		speed:			1000,
		timeout:		4000,
		pause:			1,
			pauseOnPagerHover: 1,
		pager: '.buttons',
		pagerAnchorBuilder: function(idx, slide) { 
                return '<li><a href="#">&nbsp;</a></li>';
        },
		updateActivePagerLink: function(container, slide) {
			$(container+'>li>a').removeClass('sel');
			$(container+'>li:eq('+slide+')>a').addClass('sel');	
		}
	 });
	 
	//windowshade
	$('.windowshade').each(function(){
		$(this).find('.string').bind('click', function(){
			$(this).parent('p').siblings('.shade').slideToggle();
			return false;
		});
	});
	
	//
	$('.hide').hide();
	$('.show').show();
	
});
