/******* JAVASCRIPT LIBRARY ******/

/* AUTHOR: Mike Spencer */
/* COMPANY: Deelicious Web Design */
/* TITLE: Javascript Library */
/* DESCRIPTION: Universal scripts for DWD websites. */
/* UPDATED: 8/11/06 */
		
// Random girls sports images for inner pages

var girlsPix = new Array;
girlsPix[0] = "../images/girlsPix/swimming.jpg";
girlsPix[1] = "../images/girlsPix/softball.jpg";
girlsPix[2] = "../images/girlsPix/soccer.jpg";

var gpCount = girlsPix.length;

// Random boys sports images for inner pages

var boysPix = new Array;
boysPix[0] = "../images/boysPix/skiing.jpg";
boysPix[1] = "../images/boysPix/hockey.jpg";
boysPix[2] = "../images/boysPix/football.jpg";
boysPix[3] = "../images/boysPix/swimming.jpg";
boysPix[4] = "../images/boysPix/basketball.jpg";
boysPix[5] = "../images/boysPix/baseball.jpg";
boysPix[6] = "../images/boysPix/soccer.jpg";

var bpCount = boysPix.length;

function selectPix() {
	if (document.images) {
		var randomNum = Math.floor(Math.random() * gpCount);
		document.girlsPic.src = girlsPix[randomNum];
		
		randomNum = Math.floor(Math.random() * bpCount);
		document.boysPic.src = boysPix[randomNum];
	}
}
	
// opens a link selected in the boys sports menu in the same window
function boysLink(boysNav) {
	var url = document.boysNav.boysMenu.options[document.boysNav.boysMenu.selectedIndex].value;
	window.location.href = url;
}

// opens a link selected in the girls sports menu in the same window
function girlsLink(girlsNav) {
	var url = document.girlsNav.girlsMenu.options[document.girlsNav.girlsMenu.selectedIndex].value;
	window.location.href = url;
}

// opens virtual tour player
function tourlink(page) {
   OpenWin = this.open(page,"CtrlWindow","height=500,width=903,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no");
}

// opens external links in new window
function xlink(page) {
	OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes"); 
}
