//Theme thumbnail
$(document).ready(function(){

	$('.thumb').hover(function() {
		
		$(this).find('span').stop(true, true).animate({bottom: 0},200);

	}, function() {
		
		$(this).find('span').stop(true, true).animate({bottom:-85},200);
			
	});

});

//Cufon text
Cufon.replace('h2');
