$(function(){
	Cufon.replace('h3', { fontFamily: 'MetroScript' });
	Cufon.replace('h1', { fontFamily: 'DIN-Bold' });
	
	$("#homeButtons > div").hover(
		function() {
			$(this).children(".buttonTextWrapper").css("display", "block");
		},
		function () {
			$(this).children(".buttonTextWrapper").css("display", "none");
		}
	);
});
