// JavaScript Document
jQuery(document).ready(function(){
		Cufon.replace('h1,h2,h3,.intro p');
					Cufon.replace('.slide-info h2 span');
			Cufon.replace('.slide-info h2 span', {
	color: '-linear-gradient(white, #000)',
	textShadow: '1px 1px #666'
});

	jQuery(".thumbnailwrap img").hover(function(){
			jQuery(this).stop().fadeTo("medium", 0.5); // This should set the opacity to 100% on hover
			},function(){
			jQuery(this).stop().fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
			});


	});
