﻿/// <reference path="../../webedit/dotnet/js/jquery-1.3.1-vsdoc.js" />

$(document).ready(function() {
    $(".mainbox .imagewrapper[rel]").hover(
        function() {
            $(this).find(".image").hide();
            $(this).find(".thehover").show();
        },
        function() {
            if ($(this).find("select").attr("donothide") !=  "true"){
                $(this).find(".thehover").hide();
                $(this).find(".image").show();
            }
        }
    );

    $(".mainbox .imagewrapper[rel] select").click(
        function() {
            $(this).attr("donothide","true");
        }
    );    

    $('#btn_search_great_deals').click(function() {
        window.location = "travel_offers_search.asp?terid=1015&DestinationID=" + $("#DestinationID").val() + "&TypeID=" + $("#TypeID").val();
    });
});
