function goTo(id) {
	var pages = [
		'clinica-stomatologica-unident.html',
		'medici-stomatologi.html',
		'echipament-stomatologic.html',
		'servicii-stomatologice/',
		'contact.html'
	];
	
	window.location = site_url + pages[id];
}

function moveMenuImage(distance, id) {
	$(id).setStyle({marginTop: distance + 'px'});
}

var woms = new Array();

function womOn(){
  window.onload = womGo;
}

function womGo(){
  for(var i = 0;i < woms.length;i++)
    eval(woms[i]);
}

function womAdd(func){
  woms[woms.length] = func;
}

function showMessage(block) {
    new Effect.Appear(block, {duration: 1});
}