$(document).ready(function(){
	$('.testimonials dl').addClass('enhanced');
	$('.testimonials dt').addClass('enhanced').showQuote();
	$('.testimonials dd').addClass('enhanced');

	$('#talking').html('<img src="/images/quotes/pershing.png">');

	$('#pershing').addClass('selected');

	$('html').removeClass('js');
});


$.fn.showQuote = function() {
	return this.each(function() {
		$(this).mouseover(
			function(){
				var who = $(this).attr('id');

				$('.selected').removeClass('selected');
				$(this).addClass('selected');

				if (jQuery.support.opacity) {
					$('#talking img').attr('src', '/images/quotes/' + who + '.png');
				} else {
					$('#talking').html('<img src="/images/quotes/' + who + '.png">');
				}
			}
		);
	});
}

jQuery.preloadImages = function() {
	for(var i=0; i < arguments.length; i++) {
		$('<img>').attr('src', arguments[i]);
	}
}
$.preloadImages('/images/quotes/pershing.png', '/images/quotes/martincook.png', '/images/quotes/catani.png', '/images/quotes/metz.png', '/images/quotes/swilley.png');
