;(function(){

	// slideshow
	var random = !$( '#project' ).length;

	if ( $( '.slideshow' ).length ) {
		$( '.slideshow' ).cycle( {
			'pager'		: '.slideshow .contents',
			'slideExpr'	: '.slide',
			'timeout'	: 8000,
			'speed'		: 1500,
			'random'	: random,
			'pause'		: 1
		} );
	}

	// faq
	$( '#faq .contents > li > a' ).live( 'click', function(){
			$( this.hash ).appendTo( $( this.parentNode ) ).slideDown( 500 );
			return false;
		} );

	$( '#faq .contents .back a' ).live( 'click', function(){
			$( this ).parents( '.answer' ).slideUp( 500 );
			return false;
		} );

})();

