$(function(){
	doCufon();
	firmButtons();
	logoButton();
});

function doCufon(){
	Cufon.replace('.title', {fontSize: "12px",fontFamily: 'Tahoma'});
}


function firmButtons(){
	var firmButtons = $('.leftContent .firmButton');
	if(firmButtons.length === 0){
		return false;
	}
	
	firmButtons.hover(function(){
		$(this).find('.hover').stop().animate({"top":0}, 300, 'easeInOutCubic');
	}, function(){
		$(this).find('.hover').stop().animate({"top":"-130"}, 300, 'easeInOutCubic');;
	});
}

function logoButton(){
	var logoButton = $('#logoButton');
	if(logoButton.length === 0){
		return false;
	}
	
	logoButton.hover(function(){
		$(this).find('.hover').stop().animate({"top":0}, 300, 'easeInOutCubic');
	}, function(){
		$(this).find('.hover').stop().animate({"top":"-105"}, 300, 'easeInOutCubic');;
	});
}
