function fadeout(el){
    jQuery(el).fadeTo('fast', 0.5);
}

function fadein(el){
    jQuery(el).fadeTo('fast', 1);
}

function chg_gal(img, link){
  var i=document.getElementById('gal_img');
  i.removeAttribute('width');
  i.removeAttribute('height');
  i.src=img;
  document.getElementById('gal_link').href=link;
}

