﻿function Skidropdown() {
    /*display resort info */
    document.getElementById("ski_dropdown").style.display = 'block';
    }      
    function SkidropdownOut() 
    {
        /*hide */
        document.getElementById("ski_dropdown").style.display = 'none';
    }

    /*winter*/
    function Winterdropdown() {
        /*display resort info */
        document.getElementById("winter_dropdown").style.display = 'block';
    }
    function WinterdropdownOut() {
        /*hide */
        document.getElementById("winter_dropdown").style.display = 'none';
    }

    /*summer*/
    function Summerdropdown() {
        /*display resort info */
        document.getElementById("summer_dropdown").style.display = 'block';
    }
    function SummerdropdownOut() {
        /*hide */
        document.getElementById("summer_dropdown").style.display = 'none';
    }
    /*italy*/
    function Italydropdown() {
        /*display resort info */
        document.getElementById("italy_dropdown").style.display = 'block';
    }
    function ItalydropdownOut() {
        /*hide */
        document.getElementById("italy_dropdown").style.display = 'none';
    }
    /*Weddings*/
    function Weddingsdropdown() {
        /*display resort info */
        document.getElementById("weddings_dropdown").style.display = 'block';
    }
    function WeddingsdropdownOut() {
        /*hide */
        document.getElementById("weddings_dropdown").style.display = 'none';
    }
    /*honeymoons*/
    function Honeymoonsdropdown() {
        /*display resort info */
        document.getElementById("honeymoons_dropdown").style.display = 'block';
    }
    function HoneymoonsdropdownOut() {
        /*hide */
        document.getElementById("honeymoons_dropdown").style.display = 'none';
    }
    /*Tailormade*/
    function Tailormadedropdown() {
        /*display resort info */
        document.getElementById("tailormade_dropdown").style.display = 'block';
    }
    function TailormadedropdownOut() {
        /*hide */
        document.getElementById("tailormade_dropdown").style.display = 'none';
    }
    

