//descr goes here
function swapImg(item, picimage) {
item.src=picimage;
}

function toggle(strSection) {
   if( document.getElementById(strSection).style.display=='none' ){
     document.getElementById(strSection).style.display = '';
   }else{
     document.getElementById(strSection).style.display = 'none';
   }
  }

