// JavaScript Document

	Cufon.replace('.content p', {fontFamily: 'Futura', hover:'true'});
	Cufon.replace('.content h1', {fontFamily: 'Serpentine-Light'});
	Cufon.replace('.header p', {fontFamily: 'Serpentine-Light'});
	Cufon.replace('.footer a', {fontFamily: 'Serpentine-Light', hover:'true'});	
	
var display_timeout = 0;

$(function(){		   
	$('.scroll_arr_up A').click(function(){					  
		$('.scrolling_text').scrollTo('-=20px',{ axis:'y'} );
	});
	
	$('.scroll_arr_down A').click(function(){						  
		$('.scrolling_text').scrollTo('+=20px',{ axis:'y'} );
	});
	if($('.scrolling_text').size()>0){
		var h=$('.scrolling_text *:last').offset().top-$('.scrolling_text *:first').offset().top;
		var dh=$('.scrolling_text *:last').height();
		var h1=$('.scrolling_text').height();
		if(h+dh<h1){
			$('.scroll').hide();
		}
	}
});