$(document).ready(function(){
    $('ul li.sub').bind('click', function(){
        if($(this).children("ul").css('display')!='block'){
            $('ul li.sub').children('ul').slideUp('slow', function(){
                $(this).css('display', 'n');
            });
            $(this).children("ul").slideDown('slow', function(){
                $(this).css('display', 'block');
            });
        }else{
            $(this).children("ul").slideUp('slow', function(){
                $(this).css('display', 'none');
            });
        }
    });
    $('#datachegada').focus(function(){
        $(this).calendario({
            target:'#datachegada',
            top: -10,
            left: 200
        });
    });
    $('#datasaida').focus(function(){
        $(this).calendario({
            target:'#datasaida',
            top: -10,
            left: 220
        });
    });
    $("#destaques").cycle({
        'fx': 'fade',
        'speed': 500
    });
    $('#galeria').jcarousel();
    $('#galeria li a').lightBox();
});
