/* FUNCTIONS
------------------------------------------------------------------------------*/

  function changeImage(cat, id, type){
    if(type == 'normal'){
      document.getElementById(id).src = 'data/'+cat+'_tn/'+id;
    }else{
      document.getElementById(id).src = 'images/layout/image_over_'+type+'.gif';
    }
  }
