﻿function initAuctionBox() {
    $("#box-aste").hover(
        function() {
            $("#auct-cover-zoom").fadeIn();
        },
        function() {
            $("#auct-cover-zoom").fadeOut();
        }
    );

    $("#box-mostre").hover(
        function() {
            $("#auct-cover-zoom").fadeIn();
        },
        function() {
            $("#auct-cover-zoom").fadeOut();
        }
    );

    $("#box-lotti ul li").hover(
        function() {
            var ID = $(this).attr("id");
            ID = ID.substring(6, ID.length);
            $("#imglot-" + ID).fadeIn();
        },
        function() {
            var ID = $(this).attr("id");
            ID = ID.substring(6, ID.length);
            $("#imglot-" + ID).fadeOut();
        }
    );

        $("#box-opere ul li").hover(
        function() {
            var ID = $(this).attr("id");
            ID = ID.substring(5, ID.length);
            $("#imgaw-" + ID).fadeIn();
        },
        function() {
            var ID = $(this).attr("id");
            ID = ID.substring(5, ID.length);
            $("#imgaw-" + ID).fadeOut();
        }
    );

}

$(document).ready(initAuctionBox);
