$(document).ready(function() {
	
	$('#testimonial').bind({
		mouseenter: function() {
			$(this).find('p').stop(true, true).fadeTo('fast', .25);
			$(this).find('div').stop(true, true).fadeIn('fast');
		},
		mouseleave: function() {
			$(this).find('p').stop(true, true).fadeTo('fast', 1);
			$(this).find('div').stop(true, true).fadeOut('fast');
		}
	});

	// Slideshow
	$('#slideshow').cycle({
		timeout:	8000,
		speed:		2000
	});
	
	// Featured Clients
	var clients = $('#clients a');
	$(clients).find('span').hide();
	$(clients).bind({
		mouseenter: function() {
			$(this).find('span').stop(true, true).fadeIn('fast');
		},
		mouseleave: function() {
			$(this).find('span').stop(true, true).fadeOut('fast');
		}
	});
	
	// Center testimonial
	var testimonial = $('#testimonial blockquote');
	var testimonial_height = $(testimonial).height();
	$(testimonial).css('padding-top', 75 - (testimonial_height / 2));
	
});
