﻿// JScript 文件
function changeDiv(divname,divinfo)
{
//display tour title background image
    document.getElementById("tour_itinerary").style.backgroundImage="url(../images/hotel/bg3.gif)";
    document.getElementById("tour_faq").style.backgroundImage="url(../images/hotel/bg3.gif)";
    document.getElementById("tour_price").style.backgroundImage="url(../images/hotel/bg3.gif)";
    document.getElementById(divname).style.backgroundImage="url(../images/hotel/bg4.gif)";
    
    //display tour title content
    document.getElementById("itineraryinfo").style.display="none";
    document.getElementById("faqinfo").style.display="none";
    document.getElementById("priceinfo").style.display="none";
    document.getElementById(divinfo).style.display="block";
}
