// JavaScript Document
$(function(){
var sdates = $("#hotelstarttime,#hotelendtime").datepicker({showAnim:"fadeIn",duration:0,minDate: 0, maxDate:"2y",numberOfMonths: 3,showButtonPanel: true});
shcity= $("a[name='city']");
$("#hotelcityList a").click(function(){
$("#citys").val($(this).text());
shcity.text($(this).text());
$("#hotelcityList").hide();
});
$("a[name='city']").click(function(){
$("#hotelcityList").fadeIn(200);
});
$(".closeIt").click(function(){
$("#hotelcityList").fadeOut(200);
});
});
function ShowHideTr(e)
{
var eimg =$(e).parent().find('img'), be = eimg.attr('src').indexOf('down') > 0;
$(e).parent().parent().parent().find('tr[name]').toggle(be);
if(be)
{
eimg.attr("src","/css/images/hotel/double-arrow-up.png");
}
else
{
eimg.attr("src","/css/images/hotel/double-arrow-down.png");
}
}
function showHideLocation(e)
{
var eimg =$(e).find('img'),textStr = $("#localMore"),Obj = $(".hideLocation");
if(Obj.css("display")=="block")
{
Obj.css("display","none");//Obj.hide();
textStr.html("More Location Select
");
//eimg.attr("src","/css/images/hotel/double-arrow-down.png");
}
else
{
Obj.css("display","block");
textStr.html("Less Location Select
");
subFTForm();
}