// script for image top menus

navHover = function() {
	var lis = document.getElementById("navmenu-h").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);



// script for image rotation 

var image1=new Image()
image1.src="images/image.jpg"
var image2=new Image()
image2.src="images/image2.jpg"
var image3=new Image()
image3.src="images/image3.jpg"


// script for popup press release 

function OpenPressPopUp(pageURL,width,height) 
        { 
            var left = (screen.width/2)-(width/2);
            var top = (screen.height/2)-(height/2);
            var targetWin = window.open (pageURL, '', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width='+width+', height='+height+', top='+top+', left='+left);            
        }

