function initCufon() {
	Cufon.replace('#content h1', { fontFamily: 'Vitesse Book'})
	Cufon.replace('.post-list h2', { fontFamily: 'Vitesse Book'})
	Cufon.replace('.caption .name', { fontFamily: 'Vitesse Book',textShadow: '#fff 2px 2px'})
	Cufon.replace('.caption .surname', { fontFamily: 'Vitesse-Bold',textShadow: '#fff 2px 2px'})
	Cufon.refresh('h2')
}
function initSlide(){
	$("li.hentry > div.head, div.videos > div.heading, div.categories").each(function(){
		var hold = $(this);
		var box = hold.find('> ul');
		var h = box.outerHeight(true);
		
		box.css({marginTop:-h});
		hold.hover(function(){
			box.animate({
				marginTop:0
			}, {queue:false, duration: 300});
		}, function(){
			box.animate({
				marginTop:-h
			}, {queue:false, duration: 300})
		});
	});
}
$(document).ready(function(){
	initCastomForms();
	new google.translate.TranslateElement({
	pageLanguage: 'en'
	}, 'google_translate_element');	
	initCufon();
	initSlide();
	
});