// JavaScript Document
jQuery(document).ready(function($) {
    
	
	
	
	//DIVENTA ASSOCIATO
	$("#b1-descrizione").hover(function() {
		$(this).animate({right:"15px"},500);
		},
	function(){
		$(this).animate({right:"20px"},500);				
	});
	
	//SOCIAL
	$("#social-n a").hover(function() {
		$(this).animate({marginTop:"4px"});
		},
	function(){
		$(this).animate({marginTop:"0px"});				
	});
	
	
	//I TUOI SERVIZI
	
		$("#servizi-step1").hover(function() {
		$(this).animate({right:"45px"});
		},
	function(){
		$(this).animate({right:"39px"});				
	});

		$("#servizi-step2").hover(function() {
		$(this).animate({right:"45px"});
		},
	function(){
		$(this).animate({right:"39px"});				
	});

	//GESTIONE URGENZE

$("#gest-urg-box2 a").hover(function() {
		$(this).animate({top:"5px"},250);
		},
	function(){
		$(this).delay(1000).animate({top:"30px"},500);				
	});





//CHIUSURA FUNZIONE jQuery TUTTO DEVE ANDARE PRIMA
});







