Cufon.replace('h1', {
	color: '-linear-gradient(#111,#555,#111)',
	textShadow: '1px 1px #fff'

});
Cufon.replace('h2', {
	textShadow: '1px 1px #fff'

});
$(document).ready(function() {
	
	$('.content li').stop().hover(function() {
			$(this).find('img').stop(true, true).fadeTo(600, 0.75);
		}, function() {
			$(this).find('img').stop(true, true).fadeTo(600, 1);	
		}
	);

});