$(function(){
	

$('#glasses').cycle({
		
			fx: 'fade',
		
			random: 1			
	});	

	

$('#featuredframes').cycle({

					
fx: 'fade',
		
random: 1, 
		
timeout: 5000,
		
speed: 1000

	});


$('.subpage blockquote')
		.find('p:first')
			
					.prepend("<span class='quote'>&#8220</span>")
				
					.append("<span class='quote'>&#8221</span>")

					.end()
		
					.find('p:odd')
			
					.addClass("cite")
				
					.prepend("&ndash; ");

		
$('#quote').cycle({
			fx: 'scrollUp',
			
					random: 1,

					timeout: 10000,
		
			containerResize: 1,
		
			before: function(cSlide,nSlide) { 
				$quote = $('#quote');

$quote.animate({ 
			height: $(nSlide).height()
			      }, 500 ); 




			}
		});				
});



