$(document).ready(function()
{
	$('a[rel="fancybox"]').fancybox( {showNavArrows:false} );

	$('.cycleimages').cycle({ 
		fx:      'fade', 
		pause:	  true,
		speed:    500, 
		timeout:  5000,
		slideExpr:'img'
	});
	
	
	$('.testimonials').cycle({ 
		fx:      'fade', 
		pause:	  true,
		speed:    500, 
		timeout:  20000,
		pager:	  '.nav_testimonials',
		slideExpr:'div'
	});
	
	/*
	
	$('.testimonials > div > blockquote').each(function()
	{
		var $this = $(this),
			original = $this.text(),
			len = original.length;
	
		$this.attr('original', original)
		$this.attr('length', len);
		
		if( len > 170 )	{ $this.html( original.substr(0, 170) + '...<br /><a class="showfull">Read full testimonial</a>' ); }
		
		
	});

	$('.testimonials > div > blockquote .showfull').live('click', function()
	{
		var $this = $(this),
			quote = $(this).closest('blockquote');
			
		quote.html( quote.attr('original') );
	});
	*/
	
});

