$(document).ready(function() {

    // leva menu sotto flash
    if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
        // galleria in fotogallery villa
        $('#galleryNascosta').galleria({
            width:605,
            height:500,
            transition: 'fade'
        });
        $('#luxurycontent h3,#luxurycontent h2,#luxurycontent p').hide();
    }else{
        $('#galleryNascosta').hide();
        $('.menuInAltoSottoFlash').hide();        
    }

    // sel menu
    var sPath = window.location.pathname;
    if(sPath=='/event.php')
        sPath = '/events-in-lucca.php';
    if(sPath=='/media/gallery/gallery.html' || sPath=='/media/video.html' || sPath=='/media/press.html')
        sPath = '/media/index.html';

    // services/guided_tours.html
    //
    //alert(sPath);
    $('#nuovoLeftMenu div a[href="http://www.coselli.com'+sPath+'"]').addClass('attivo');

    // animazione su menu di sx
    $('#nuovoLeftMenu div a[class!="attivo"]').mouseover(function (){
        $(this).animate({
            color: '#ffcc66'
        }, {
            queue:false,
            duration:600
        });
    });
    $('#nuovoLeftMenu div a[class!="attivo"]').mouseout(function (){
        $(this).animate({
            color: 'white'
        }, {
            queue:false,
            duration:700
        });
    });

    $('a.fancy').fancybox();
});
