//Variablendefinition


function ShowBoxAdditionalInfos() {
    document.getElementById('box_additional_infos').style.visibility = "visible";
    document.getElementById('content_right2').style.visibility = "hidden";
    document.getElementById('special_price_info').style.visibility = "hidden";
    document.getElementById('summertime').style.visibility = "hidden";
}

function HideBoxAdditionalInfos() {
    document.getElementById('box_additional_infos').style.visibility = "hidden";
    document.getElementById('content_right2').style.visibility = "visible";
} 

function ShowBoxSpecialPrices() {
    HideBoxAdditionalInfos();
    document.getElementById('box_special_prices').style.visibility = "visible";
}

function HideBoxSpecialPrices() {
    document.getElementById('box_special_prices').style.visibility = "hidden";
} 

function AnfrageOver() {
    document.getElementById('requestimg').src = '/images/anfrage_over.png';
}
    
function AnfrageOut() {
    document.getElementById('requestimg').src = '/images/anfrage.png';
}

function RequestOver() {
    document.getElementById('requestimg').src = '/images/request_over.png';
}
    
function RequestOut() {
    document.getElementById('requestimg').src = '/images/request.png';
}

function PIButtonOver() {
    document.getElementById('pibuttonimg').src = '/images/preisinfo_hover.png';
}
    
function PIButtonOut() {
    document.getElementById('pibuttonimg').src = '/images/preisinfo.png';
}
