﻿/// <reference path="jquery-1.4.1.js" />
/// <reference path="common.js" />
/// <reference path="easyslider1.5.js" />

function updateDestID(source, eventArgs) {
    $("#Standard2_destID").val(eventArgs.get_value());
}
$(document).ready(function() {
    $("div.ofertaheader").easySlider(
        { auto: true,
            continuous: true,
            nextText: '',
            prevText: '',
            pause: 5000,
            controlsShow: false
        });
    //NEW DROPDOWN
    $("ul.sf-menu").superfish({
        pathClass: 'current'
    });
    $("#inputs").each(function() {
        initHotFilter(this);
    });
    initCalendars("#Standard2_entrada", "#Standard2_salida", 3, 1);
    initAutoComplete("#Standard2_destino", "/Controls/Input/HotelFilter/DestinationFeed.svc/MatchedDestinationsJQuery", $("#Standard2_tID").val(), $("#Standard2_lID").val(), "#Standard2_destID");
});

