// Cufon
Cufon.replace('#nav li a', {hover: true});
Cufon.replace('h1');
Cufon.replace('h2.blog-title');
Cufon.replace('h3');
// Ends Cufon

$(document).ready(function() {
	// Stuff to do as soon as the DOM is ready;
	
	$('html').addClass('js');
	$('.item').hover(
		function() {
			$(this).children('.caption').fadeIn('fast');
		}, 
		function() {
			$(this).children('.caption').fadeOut('fast');
		}
	);

		
});

