// JavaScript per CaseNelVerde.info
// by Salvatore Laisa - www.moebiusmania.net

$(function(){

	$("#testo_continua").hide();

	$("#cont_home a").click(function() {
		$("#testo_continua").show('blind');							 
		$("#cont_home a").hide();
	});
	
	$("#cont_home a").hover(function(){											// L'id o la classe dell'oggetto che subisce l'effetto
		$(this).stop().animate({fontSize: "28px"}, 200);}, function(){ 	// la dimensione del testo quando si passa sopra col mouse
		$(this).stop().animate({fontSize: "20px"}, 400);});	

});