﻿


//        function display_date() {
//            var d = new Date();
//            $('#data_corrente').html(dateFormat(d, "dddd d mmmm yyyy HH:MM"));
//            setTimeout(display_date, 30000);
//        }

$(document).ready(function () {

    // Slide
    $('#s3slider').s3Slider({
        timeOut: 4000
    });

    //            display_date();

    
    // click
    $('.div_img_menu').click(
        function () {
            $('.div_img_menu .img_menu_hover').stop();
            document.location.href = $(this).attr('dest');
        });

//    // fade_In fade_Out Menu
//    $('.div_img_menu').hover(
//                function () {
//                    $(this).children('.img_menu_hover').attr('src', 'images/menu_contatti_hover.png');
//                },
//                function () {
//                    $(this).children('.img_menu_hover').stop().fadeOut(400, null);
//                }
//            );


});

