function MM_openBrWindow(theURL) {
	var features = "";
	var winName = "";
  window.open(theURL,winName,features);
}


startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("mainNav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className="over";
					}
node.onmouseout=function() {
					this.className="";
					}
			}
		}
	}
}
//window.onload=startList;


function blinking(){
var divdoor = document.getElementById("partnerRoll");
var p_details = divdoor.getElementsByTagName("p");
var img_pic = divdoor.getElementsByTagName("img");
var a = 0;
var c = img_pic.length-1;
p_details[0].className = "p_details";

autoRun = function(){
p_details[a].className = "";
	if(a<c){
		p_details[a+1].className = "p_details";
		a++;}
		else{
		p_details[0].className = "p_details";
		a = 0;
		}
	}
setInterval("autoRun()",1500) ;	
}





if(window.attachEvent){
	window.attachEvent("onload",blinking);
	window.attachEvent("onload",startList);
}else if(window.addEventListener){
	window.addEventListener("load",blinking,false);
	window.addEventListener("load",startList,false);
}
