﻿/*

www.asapinformatica.com
A.S.A.P. Informatica di Stefano Porrino
Software and website development
Sviluppo Software e Soluzioni internet

*/

$(document).ready(function() {

    $(".asapFade").fadeTo("slow", 0.5);
    $(".asapFade").hover(function() {
        $(this).fadeTo("slow", 1.0);
    }, function() {
        $(this).fadeTo("slow", 0.5);
    });

});

