/*js - css drop down menu*/

window.onload = restore_frames;

function restore_frames() {
  if(window.name != 'jecmain') {
    path = window.location.pathname.split("/");
    file = path.pop().split(".");
    top.location.href = '../../index.php?lang=' + path.pop() + '&site=' + file[0];
  }
}

