//preload all button rollovers
nhlpros_on = new Image();
nhlpros_on.src = "images/btn_nhlpros_2.jpg";
nhlpros_off = new Image();
nhlpros_off.src = "images/btn_nhlpros_1.jpg";

office_on = new Image();
office_on.src = "images/btn_off-ice_2.jpg";
office_off = new Image();
office_off.src = "images/btn_off-ice_1.jpg";

onice_on = new Image();
onice_on.src = "images/btn_on-ice_2.jpg";
onice_off = new Image();
onice_off.src = "images/btn_on-ice_1.jpg";

performance_on = new Image();
performance_on.src = "images/btn_performance_2.jpg";
performance_off = new Image();
performance_off.src = "images/btn_performance_1.jpg";

skating_on = new Image();
skating_on.src = "images/btn_skating_2.jpg";
skating_off = new Image();
skating_off.src = "images/btn_skating_1.jpg";

prepcamps_on = new Image();
prepcamps_on.src = "images/btn_prepcamps_2.jpg";
prepcamps_off = new Image();
prepcamps_off.src = "images/btn_prepcamps_1.jpg";


aboutus_on = new Image();
aboutus_on.src = "images/btn_aboutus_2.jpg";
aboutus_off = new Image();
aboutus_off.src = "images/btn_aboutus_1.jpg";

register_on = new Image();
register_on.src = "images/btn_register_2.jpg";
register_off = new Image();
register_off.src = "images/btn_register_1.jpg";

gallery_on = new Image();
gallery_on.src = "images/btn_gallery_2.jpg";
gallery_off = new Image();
gallery_off.src = "images/btn_gallery_1.jpg";

testimonials_on = new Image();
testimonials_on.src = "images/btn_testimonials_2.jpg";
testimonials_off = new Image();
testimonials_off.src = "images/btn_testimonials_1.jpg";

summercamp_on = new Image();
summercamp_on.src = "images/btn_summercamp_2.jpg";
summercamp_off = new Image();
summercamp_off.src = "images/btn_summercamp_1.jpg";

proshop_on = new Image();
proshop_on.src = "images/btn_proshop_2.jpg";
proshop_off = new Image();
proshop_off.src = "images/btn_proshop_1.jpg";

totalfitness_on = new Image();
totalfitness_on.src = "images/btn_totalfitness_2.jpg";
totalfitness_off = new Image();
totalfitness_off.src = "images/btn_totalfitness_1.jpg";

sports_on = new Image();
sports_on.src = "images/btn_sports_2.jpg";
sports_off = new Image();
sports_off.src = "images/btn_sports_1.jpg";

facility_on = new Image();
facility_on.src = "images/btn_facility_2.jpg";
facility_off = new Image();
facility_off.src = "images/btn_facility_1.jpg";

onlinetraining_on = new Image();
onlinetraining_on.src = "images/btn_onlinetraining_2.jpg";
onlinetraining_off = new Image();
onlinetraining_off.src = "images/btn_onlinetraining_1.jpg";

//SUB NAV
individual_on = new Image();
individual_on.src = "images/btn_individual_2.jpg";
individual_off = new Image();
individual_off.src = "images/btn_individual_1.jpg";

team_on = new Image();
team_on.src = "images/btn_team_2.jpg";
team_off = new Image();
team_off.src = "images/btn_team_1.jpg";

atoms_on = new Image();
atoms_on.src = "images/btn_atoms_4.jpg";
atoms_off = new Image();
atoms_off.src = "images/btn_atoms_3.jpg";

association_on = new Image();
association_on.src = "images/btn_association_2.jpg";
association_off = new Image();
association_off.src = "images/btn_association_1.jpg";

//sublinks btn_1 & btn_2

college_on = new Image();
college_on.src = "images/btn_college_2.jpg";
college_off = new Image();
college_off.src = "images/btn_college_1.jpg";

junior_on = new Image();
junior_on.src = "images/btn_junior_2.jpg";
junior_off = new Image();
junior_off.src = "images/btn_junior_1.jpg";


midget_on = new Image();
midget_on.src = "images/btn_midget_2.jpg";
midget_off = new Image();
midget_off.src = "images/btn_midget_1.jpg";

bantam_on = new Image();
bantam_on.src = "images/btn_bantam_2.jpg";
bantam_off = new Image();
bantam_off.src = "images/btn_bantam_1.jpg";

peewee_on = new Image();
peewee_on.src = "images/btn_peewee_2.jpg";
peewee_off = new Image();
peewee_off.src = "images/btn_peewee_1.jpg";



atom_on = new Image();
atom_on.src = "images/btn_atoms_2.jpg";
atom_off = new Image();
atom_off.src = "images/btn_atoms_1.jpg";


novice_on = new Image();
novice_on.src = "images/btn_novice_2.jpg";
novice_off = new Image();
novice_off.src = "images/btn_novice_1.jpg";

//sublinks btn_3 & btn_4


college1_on = new Image();
college1_on.src = "images/btn_college_4.jpg";
college1_off = new Image();
college1_off.src = "images/btn_college_3.jpg";

junior1_on = new Image();
junior1_on.src = "images/btn_junior_4.jpg";
junior1_off = new Image();
junior1_off.src = "images/btn_junior_3.jpg";


midget1_on = new Image();
midget1_on.src = "images/btn_midget_4.jpg";
midget1_off = new Image();
midget1_off.src = "images/btn_midget_3.jpg";

bantam1_on = new Image();
bantam1_on.src = "images/btn_bantam_4.jpg";
bantam1_off = new Image();
bantam1_off.src = "images/btn_bantam_3.jpg";

peewee1_on = new Image();
peewee1_on.src = "images/btn_peewee_4.jpg";
peewee1_off = new Image();
peewee1_off.src = "images/btn_peewee_3.jpg";





//function for ALL rollovers
function roll(vName, TF) {

	if (document.images) {
	
		if (TF == "true") {
		
			var img = eval(vName + "_on.src");
		} else {
		
			var img = eval(vName + "_off.src");
		}
		document[vName].src = img;
	}
}



