function prepareSlideshow() {
// Make sure the browser understands the DOM methods 
  if (!document.getElementById) return false;
// Make sure the elements exist
  if (!document.getElementById("lingua")) return false;
// Apply styles to the preview image
  var lingua = document.getElementById("lingua"); 
  var links = lingua.getElementsByTagName("a");  

  lingua.style.position = "absolute";
  lingua.style.right = "28px";
  lingua.style.top = "-58px"; 
 	
// Attach the animation behavior to the mouseover event
  lingua.onmouseover = function() {	
	var ypos = parseInt(lingua.style.top);
   moveElement("lingua",28,0,0);
  }
  lingua.onmouseout = function() { 
	moveElement("lingua",28,-58,0);	
  }
  
 }    
addLoadEvent(prepareSlideshow);

