// JavaScript Document
/*meteopress*/
function meteopress(){
  var origX = 0, origY = 0;
  var img = document.getElementById("meteopress").getElementsByTagName("img");
  for(var i = 0; i < img.length; i++){
  
    img[i].style.height = "34";
    img[i].style.width = "25";
    //alert(img[i].nodeName);
    
    img[i].onmouseover = function(e){
      e = e || window.event;
      origX = e.pageX || window.event.clientX + document.body.scrollLeft || 0;
      origY = e.pageY || window.event.clientY + document.body.scrollTop || 0;
      
      this.style.height = "68";
      this.style.width = "50";
      this.style.position = "absolute";
      this.style.zIndex = "1000";
      this.style.top = origY-60;
      this.style.left = origX-25;
    }
    img[i].onmouseout = function(){
      setTimeout("",1250)
      this.style.height = "34";
      this.style.width = "25";
      this.style.position = "static";
      this.style.zIndex = "1";
    }
    /*img[i].onmouseover = img[i].onmouseout = function(e){
    e = e || window.event;

	  this.style.height = e.type == "mouseover" ? "68" : "34";
	  this.style.width = e.type == "mouseover" ? "50" : "25";
  	}*/
  }  
}

