$(document).ready(function() 
{

	// Cufon title replacement
	Cufon.replace('#features .title')('h1')('h2')('h3')('h4')('#navigation a')('#pitch .infoline p')('#hero .content p',{ hover: true });

	// Home page image slider
	if ($('#hero').length > 0)
	{
		$('#hero').cycle({
			fx:      'scrollLeft',
			timeout: 5000,
			next:   '#next', 
			prev:   '#prev'
		});
}		
})


