
function changePicture(strPerson)
         {
         strPath =  "images/galerie/animation/";

         if(is_mac)
                 {
                 strPath = "../" + strPath;
                 }

         //alert(strPerson);

         if(strPerson == 'walter')
                 {
                 parent.frames[1].document.images[0].src = strPath + 'links_walter_12.gif';
                 }
         else if (strPerson == 'peter')
                 {
                 parent.frames[1].document.images[0].src=strPath + 'links_peter_12.gif';
                 }
         else if (strPerson == 'jasemin')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_jasemin_12.gif';
                 }
         else if (strPerson == 'doris')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_doris_12.gif';
                 }
         else if (strPerson == 'sylvia')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_sylvia_12.gif';
                 }
         else if (strPerson == 'erich')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_erich_12.gif';
                 }
         else if (strPerson == 'phillip')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_philipp_12.gif';
                 }
         else if (strPerson == 'anita')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_anita_12.gif';
                 }
         else if (strPerson == 'meggy')
                 {
                 parent.frames[3].document.images[0].src=strPath + 'rechts_meggy_12.gif';
                 }

         }