// JavaScript Document

//  nav rollovers
if (document.images) {
	out = new Image();
	out.src = "images/nav/home.gif";
	over = new Image();
	over.src = "images/nav/home_ov.gif";
	out = new Image();
	out.src = "images/nav/about.gif";
	over = new Image();
	over.src = "images/nav/about_ov.gif";
	out = new Image();
	out.src = "images/nav/sm_vol.gif";
	over = new Image();
	over.src = "images/nav/sm_vol_on.gif";
	out = new Image();
	out.src = "images/nav/home.gif";
	over = new Image();
	over.src = "images/nav/home_on.gif";
	out = new Image();
	out.src = "images/nav/who.gif";
	over = new Image();
	over.src = "images/nav/who_on.gif";
	out = new Image();
	out.src = "images/nav/what.gif";
	over = new Image();
	over.src = "images/nav/what_on.gif";
	out = new Image();
	out.src = "images/nav/getinvolved.gif";
	over = new Image();
	over.src = "images/nav/getinvolved_on.gif";
	out = new Image();
	out.src = "images/nav/news.gif";
	over = new Image();
	over.src = "images/nav/news_on.gif";
	out = new Image();
	out.src = "images/nav/clubs.gif";
	over = new Image();
	over.src = "images/nav/clubs_on.gif";
}
function swapImageIn(obj, img) {
	if (document.images){
			document.images[obj].src = img;
	}
  }
//

//  date script
var daynames = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
var monthnames = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); 
var fechahoy = new Date();
function escribirfechahoy() {
     document.write(" " + daynames[fechahoy.getDay()] + ", " + monthnames[fechahoy.getMonth()] + " " + fechahoy.getDate() + ", 2004  "); 
}

function pais(){
	var Hoy=new Date();
	dd=new String(Hoy.getDate());
	mm=Hoy.getMonth()+1;
	yy=Hoy.getFullYear();
  	var fechahoy=dd.concat(mm,yy) 
}
//

// Just for the  popup page
function openLink(theURL) 
{  
  window.open(theURL,
              "newWin",
              "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=510,height=430");
}

