﻿/// <reference path="jquery-1.5.1.js" />
/// <reference path="supersized.3.1.3.js" />


$(document).ready(function () {
    $('.mostraDettaglio').click(function () {

        $('#dettaglio1').show('fast');
        $('#dettaglio2').show('fast');

    });
    

    $('.close').click(function () {

        $('#dettaglio1').delay(0).hide('slow');
        $('#dettaglio2').delay(0).hide('slow');
    });

    $('.divprodotto').each(function () {
    
        var icon = $("<span>Nome</span>");

        $(this).append(icon);

    });

});




   
