$(document).ready(function(){
	var quotes = [
		'Time has proven that the choice for quality over price is the most cost efficient.',
		'<span style="font-size:18px;">Our satisfaction is found in the products we create and the service we provide; not in the dollars we earn.</span>',
		'Waste still exists in a digital world.  Measure twice, cut once.',
		'We believe that quality is a process, not a result.'
	];
	var i = Math.floor(Math.random()*quotes.length);
	var $quote = $('#quote');
	var $quoteItem = $quote.find('.quote-item');
	if( $quote.length > 0 ) {
		$quoteItem.hide();
		$quoteItem.html(quotes[i]);
		setTimeout(function(){
			$quoteItem.fadeIn('slow');
		},500);
	}
});

