// JavaScript Document
	//<![CDATA[
	  window.addEvent('domready', function(){
	    var data = {
	      '1.png': { caption: '' }, 
	      '2.png': { caption: '' }, 
	      '3.png': { caption: '' }, 
	      '4.png': { caption: '' },
		  '5.png': { caption: '' }
	    };
	    var myShow = new Slideshow.KenBurns('show', data, { captions: false, controller: false, delay: 3000, duration: 2000, height: 130, hu: 'imagenes/', width: 815 });
		});
	  
function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
		curleft = obj.offsetLeft
		curtop = obj.offsetTop
		while (obj = obj.offsetParent) {
			curleft += obj.offsetLeft
			curtop += obj.offsetTop
		}
	}
	return [curleft,curtop];
}

function anclar(){
  	document.getElementById('lcvg').style.top = findPos(document.getElementById('ancla1'))[1] - 105 + "px";
  	document.getElementById('lcvg').style.left = findPos(document.getElementById('ancla1'))[0] + 7 + "px";
  	document.getElementById('lcvg').style.visibility = "visible";  
  	document.getElementById('ltecmin').style.top = findPos(document.getElementById('ancla1'))[1] - 96 + "px";
  	document.getElementById('ltecmin').style.left = findPos(document.getElementById('ancla1'))[0] + 600 + "px";
    document.getElementById('ltecmin').style.visibility = "visible";
 }