$(document).ready(function() {
	
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_square'});
	
	$('#testimonials').jCarouselLite({
		visible: 1, speed: 0, btnGo: $('.navigation a')
	});
	
	$('#testimonials .navigation a').click(function() {
		$(this).addClass('selected');
		$(this).siblings().removeClass('selected');
	});
	
});