/**
 * @author ehandelsbureauet w&w
 */
function activeMenu(){
    try {
        if (window.location.pathname == '/Projekter.aspx') {
            document.getElementById('item1').src = '/Files/Billeder/Topmenu/projekter_active.gif'
        }
        if (window.location.pathname == '/Produkter.aspx') {
            document.getElementById('item2').src = '/Files/Billeder/Topmenu/produkter_active.gif'
        }
        if (window.location.pathname == '/Kvaliteten.aspx') {
            document.getElementById('item3').src = '/Files/Billeder/Topmenu/kvaliteten_active.gif'
        }
        if (window.location.pathname == '/Nyheder.aspx') {
            document.getElementById('item4').src = '/Files/Billeder/Topmenu/nyheder_active.gif'
        }

    } 
    catch (e) {
    }
}
































