$(document).ready(function(){
	
	$("a.show").toggle(function(){
		$(this).parent().find('.description').animate({left: '0'}, 300, 'swing');
		}, function(){
		$(this).parent().find('.description').animate({left: '320px'}, 300, 'swing');
	});
	
	$('li .frame').hover(function(){
		$(this).children('.description').stop().animate({left: '0'}, 300, 'swing');
		}, function(){
		$(this).children('.description').stop().animate({left: '320px'}, 300, 'swing');
	});
	
	$('.testimonials').cycle({
		fx: 'scrollLeft',
		timeout: 10000
	});
	
	$('.slideshow').cycle({
		fx: 'fade'
	});

});