function resizeimg()
{
    if(document.getElementById('artikelbildbild').style.width == '460px')
    {
    document.getElementById('artikelbild').style.width = '244px';
    document.getElementById('artikelbildbild').style.width = '240px';
    document.getElementById('bildunterschrift').style.width = '213px';
    document.getElementById('loupe').src = 'images/icon_loupe_plus.png';
    }
    else if(document.getElementById('artikelbildbild').style.width == '240px')
    {
    document.getElementById('artikelbild').style.width = '464px';
    document.getElementById('artikelbildbild').style.width = '460px';
    document.getElementById('bildunterschrift').style.width = '433px';
    document.getElementById('loupe').src = 'images/icon_loupe_minus.png';
    }



}