// PHCS
$(function()
{
	// testimonials
	if ($('.testimonials').is('div'))
	{
		var items = $('.testimonials').children('.item');
		if (items.length > 1)
		{
			$('.testimonials').cycle(
			{ 
				speed:    1000, 
				timeout:  5000 
			});
		}
	}
	
	// fancybox
	$('.gallery a').fancybox();
	
	// external links
	$('a[rel=external]').attr('target','_blank');
});
