﻿/////////////////////////////////////////////////////////
// gestione colori e hover menu sx on document ready
/////////////////////////////////////////////////////////
jQuery(document).ready(function() {
    jQuery("ul.ulMenuSX li").hover(function() {
        jQuery(this).css({
            'background-color': '#ffffff',
            'background-repeat': 'no-repeat',
            'background-position': 'left 7px',
            'background-image': 'url(/public/images/DotList.jpg)'
        });
    }, function() {
        jQuery(this).css({
            'background-color': 'Transparent',
            'background-repeat': 'no-repeat',
            'background-position': 'left 7px',
            'background-image': 'url(/public/images/WhiteDotList.gif)'
        });
    });

    jQuery("ul.ulMenuDidatticaStoria li").hover(function() {
        jQuery(this).css({
            'background-color': '#ffffff',
            'background-repeat': 'no-repeat',
            'background-position': 'left 7px',
            'background-image': 'url(/public/images/DotList.jpg)'
        });
    }, function() {
        jQuery(this).css({
            'background-color': 'Transparent',
            'background-repeat': 'no-repeat',
            'background-position': 'left 7px',
            'background-image': 'url(/public/images/WhiteDotList.gif)'
        });
    });
});

/////////////////////////////////////////////////////////
// gestione slider novita editoriali in masterpage
/////////////////////////////////////////////////////////
jQuery(document).ready(function() {
    try {
        jQuery(".slider").easySlider({
            auto: true,
            vertical: false,
            controlsShow: false,
            speed: 2000,
            continuous: true
        });
    }
    catch (e) { }
});

