/*
* file: imageTable.js
* author: Anil Philip, 
* juwo LLC, http://juwo.com
* date: May 2, 2005
*/

/*
Global variables
*/
// pool of images for that category.
var images = new Array(); 
// index of images selected from the pool
var selectedImages = new Array();

// constructor for image
function image(src, url, height, width, alt) {
   this.src = src;
   this.url = url;
   this.height = height;
   this.width = width;
   this.alt = alt;
}

/*
* This function draws a table of images for that catalog category.
* The table has 'cols' columns and has 'n' images selected from the pool.
*/
function imageTable(category, n, cols) {
  loadCategoryImages(category);
  selectImages(n, category);
  return drawImageTable(n, cols);
}

/* 
* This function selects 'n' images out of several images loaded in the
* 'images' pool array
*/
function selectImages(n, category) {
  // favorites were already selected in the call loadCategoryImages()
  // now fill in the rest of the spots with random images
  selectRandom(n - selectedImages.length);
}

function drawImageTable(n, cols) {
   var rows = Math.ceil(n / cols);
   //alert(rows);
   var i = 0;   var j = 0; var k = 0;
   var output = "<TABLE cellSpacing=0 cellPadding=2 width='100%' border=0> <TBODY>";
   for(i = 0; i < rows; i++) {
       output += "<tr>";
       for(j = 0; j < cols; j++) {
	       output += "<td align=middle width='25%' height=161> ";
		   // break out of loop if no more elements left
		   if((i * cols + j) >= selectedImages.length)
 		     break;
    	   k = selectedImages[i * cols + j];		   
    	   output += "<a href='" + images[k].url + "' align=bottom border=1>";
    	   output += "<img src='" + images[k].src;
		   output += "'";
		   output += " height=" + images[k].height;
		   output += " width=" + images[k].width;
		   output += " align=bottom border=1"; 
    	   output += " alt='" + images[k].alt + "' </a>";
           output += "</td>";
  	  }
       output += "</tr>";
   }
   output += "</TBODY> </TABLE>";
//alert(output);  
   return output;
}
//
// This function allows you to pre-select images that must appear always on the page, 
// starting at the 0th cell.
// If you want to force favorites to appear in specific cells, then rewrite selectImages()
// to first fill in all the images at random, then assign your favorites in the desired cell 
// locations. e.g. selectedImages[4] = 2;
function selectFavorites(category) {
// NOTE: 1) add your favorites here like this. e.g. image #2 will always appear 
// starting at the 0th cell. 
  if(category == "journal") {
  //... add here
  }	    
else
  if(category == "index") {
 //... add here
  }    
else
  if(category == "store") {
 //... add here
  }    
else
  if(category == "aerobics") {
  //... add here
  }    
else
  if(category == "beginning") {
    selectedImages[selectedImages.length] = 26;
  }    
else
  if(category == "bodybuilding") {
  //... add here
  }    
else
  if(category == "calctest") {
    selectedImages[selectedImages.length] = 5;
  }    
else
  if(category == "exercise") {
 //... add here
  }    
else
  if(category == "free") {
  //... add here
  }    
else
  if(category == "fatloss") {
 //... add here
  }    
else
  if(category == "nutrition") {
  selectedImages[selectedImages.length] = 19;
  }    
else
  if(category == "psychology") {
  //... add here
  }    
else
  if(category == "steroids") {
  //... add here
  }
else {
  	 alert("ERROR - loadCategoryImages(). unknown category:+category" + category);
  }			
}
/*
* This function will select at random from the images array, 'num' images and store in the 'selectedImages' array
*
*/
function selectRandom(num) {
 var i = 0; var j = 0;
 var r = -1; var pos = -1;
 while(i < num) {
   // pick an image at random  
   r = Math.floor(Math.random() * (images.length));
 
   // have we already chosen it?
   pos = -1; // init
   for(j = 0; j < selectedImages.length; j++)
     if(selectedImages[j] == r)
	   pos = j;
	   
   // not found, choose	   
   if(pos == -1) {
     selectedImages[selectedImages.length] = r;
	 i++;	
   }
 }
}

/*
* This function loads a pool of images for that category.
* Note: add your own category here. Important - 'category' can be defined any way.
* and not simply weight_training, aging... 
* e.g. best_selling, most_markup, least_sales.
* Note: After loading the categories, we select our favorite images.
*/
function loadCategoryImages(category) {
  var base = null;
  var src = null;
  var href = null;
  var height = null;
  var width = null;
  var alt = null;
  
  // simply copy the data from existing html pages, and add new images also...
  // one image per paragraph.

  if(category == "index") {

    	// 0
	href="Store/HK/FunctionalFitnessOldAdults.html"; 
    height=144; alt="Functional Fitness for Older Adults"; 
    src="Store/SmallImages/FunctionalFitnessOlderAdult.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 1		
	href="Store/HK/StrengthBandTraining.html"; 
    height=144; alt="Strength Band Training"; 
    src="Store/SmallImages/StrengthBandTraining.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

    // 2
    href="Store/HK/ACSMFitnessBook.html";
    height=144; alt="ACSM Fitness Book"; 
    src="Store/SmallImages/ACSMFitnessBook2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 3
	href="Store/HK/TrainingSpeedAgilityQuick.html"; 
    height=144; alt="Training for Speed Agility and Quickness Book and DVD"; 
    src="Store/SmallImages/TrainingSpeedAgilityQuick2.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);
			
      // 4
	href="Store/HK/ExplosiveLiftingVideo.html"; 
    height=144; alt="Explosive Lifting for Sports DVD"; 
    src="Store/SmallImages/ExplosiveLiftingDVD2.jpg"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HL/FitProMusculoskeletalAnat.html"; 
    height=144; alt="Fitness Professsionals Guide to Musculoskeletal Anatomy"; 
    src="Store/SmallHLBooks/FitProMusculoskeletalAnatom.jpg"; 
    width=118;
    images[images.length] = new image(src, href, height, width, alt);

	// 6		
	href="Store/HK/FitnessandHealth.html"; 
    height=144; alt="Fitness and Health"; 
    src="Store/SmallImages/FitnessHealth2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	

	// 7	
	href="Store/HK/ACSMWorksiteHealthPromoMan.html"; 
    height=144; alt="ACSMs Worksite Health Promotion Manual"; 
    src="Store/SmallImages/ACSMWorksiteHealthPromot2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 8	
	href="Store/HL/ExerciseOlderAdults.html"; 
    height=144; alt="Exercise for Older Adults: ACE Source for Fitness Professionals"; 
    src="Store/SmallHLBooks/ExerciseforOlderAdults.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);	

	// 9	
	href="Store/HK/HighPerformanceSportsCondi.html"; 
    height=144; alt="High-Performance Sports Conditioning"
    src="Store/SmallImages/HighPerformanceSportsCond2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 10	
	href="Store/HK/TotalTrainingForYoungChamp.html"; 
    height=144; alt="Total Training for Young Champions"
    src="Store/SmallImages/TotalTrainingForYoungChamp2.gif"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

    	// 11		
	href="Store/HK/ExerTechnManResisTrain.html"; 
    height=144; alt="Exercise Technique Manual for Resistance Training"; 
    src="Store/SmallImages/ExerTechManualResistTrainNS.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 12		
	href="Store/HK/FunctionalTrainingSports.html"; 
    height=144; alt="Functional Training for Sports"; 
    src="Store/SmallImages/FunctionalTrainingSports2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 13		
	href="Store/HK/SportMechanicsCoaches.html"; 
    height=144; alt="Sport Mechanics for Coaches"; 
    src="Store/SmallImages/SportMechanicsCoaches.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 14		
	href="Store/HK/YouthDevelopmentPhysAct.html"; 
    height=144; alt="Youth Development and Physical Activity"; 
    src="Store/SmallImages/YouthDevelopmentPhysicalAct.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 15		
	href="Store/HK/SculptingHerBodyPerfect.html"; 
    height=144; alt="Sculpting Her Body Perfect"; 
    src="Store/SmallImages/SculptingHerBodyPerfect2.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);

	// 16		
	href="Store/HK/USATrackFieldCoachingMan.html"; 
    height=144; alt="USA Track and Field Coaching Manual"; 
    src="Store/SmallImages/USATrackFieldCoachingManual.jpg"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);

	// 17		
	href="Store/HK/GuidelinesCardRehabSecPrev.html"; 
    height=144; alt="Guidelines for Cardiac Rehabilitation and Secondary Prevention Programs"; 
    src="Store/SmallImages/GuidelinesCardiacRehSecPrv2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 18		
	href="Store/HK/ItsNotJustGymAnymore.html"; 
    height=144; alt="Its Not Just Gym Anymore"; 
    src="Store/SmallImages/ItsNotJustGymAnymore2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
		
	// 19		
	href="Store/HK/StrengthTrainingAnatomy.html"; 
    height=144; alt="Strength Training Anatomy"; 
    src="Store/SmallImages/StrengthTrainingAnatomy2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
		
	// 20		
	href="Store/HK/ClientCenteredExercisePrescription.html"; 
    height=144; alt="Client Centered Exercise Prescription"; 
    src="Store/SmallImages/ClientCenteredExRx2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
		
	// 21		
	href="Store/HK/28DayBodyShapeover.html"; 
    height=144; alt="28 Day Body Shapeover"; 
    src="Store/SmallImages/28dayBodyNew2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
		
	// 22		
	href="Store/HK/EssentialsStrengthTrainCond.html"; 
    height=144; alt="Essentials of Strength Training and Conditioning"; 
    src="Store/SmallImages/EssentialsStrengthTrainNSCA.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);

	// 23		
	href="Store/HK/SportPhysiologyCoaches.html"; 
    height=144; alt="Sport Physiology for Coaches"; 
    src="Store/SmallImages/SportPhysiologyCoaches2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 24		
	href="Store/HK/PersonalTrainersHandbook.html"; 
    height=144; alt="The Personal Trainers Handbook"; 
    src="Store/SmallImages/PersonalTrainersHandbook2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 25		
	href="Store/HK/EncyclopediaMuscleStrength.html"; 
    height=144; alt="Encyclopedia of Muscle and Strength"; 
    src="Store/SmallImages/EncyclopediaMuscleStrength.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 26		
	href="Store/HK/OptimizingStrengthTraining.html"; 
    height=144; alt="Optimizing Strength Training"; 
    src="Store/SmallImages/OptimizingStrengthTraining2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 27		
	href="Store/HK/PromotingPhysicalActivity.html"; 
    height=144; alt="Promoting Physical Activity"; 
    src="Store/SmallImages/PromotingPhysicalActivity.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	
	// 28		
	href="Store/HK/YogaAnatomy.html"; 
    height=144; alt="Yoga Anatomy"; 
    src="Store/SmallImages/YogaAnatomy2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 29		
	href="Store/HK/AthleticFitnessKids.html"; 
    height=144; alt="Athletic Fitness for Kids"; 
    src="Store/SmallImages/AthleticFitnessKids2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 30		
	href="Store/HK/PsychologyicalDynamicsSportEx.html"; 
    height=144; alt="Psychological Dynamics of Sport and Exercis"; 
    src="Store/SmallImages/PsychologicalDynamicsSportE.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 31		
	href="Store/HK/OvertrainingAthletes.html"; 
    height=144; alt="Overtraining Athletes"; 
    src="Store/SmallImages/OvertrainingAthletes2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 32		
	href="Store/HK/StrongerArmsUpperBody.html"; 
    height=144; alt="Stronger Arms and Upper Body"; 
    src="Store/SmallImages/StrongerArmsUpperBody2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 33		
	href="Store/Other/ACSMGuidelinesExTestingRx.html"; 
    height=144; alt="ACSM's Guidelines for Exercise Testing and Prescription"; 
    src="Store/OtherImages/ACSMGuidelinesExTestRx2.gif"; 
    width=91;
    images[images.length] = new image(src, href, height, width, alt);

	// 34		
	href="Store/HK/EvaluatingWorksiteHealthPromotion.html"; 
    height=144; alt="Worksite Health Promotion"; 
    src="Store/SmallImages/EvaluatingWorksiteHealthPro.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 35		
	href="Store/HK/ActionPlanHighBloodPressure.html"; 
    height=144; alt="Action Plan for High Blood Pressure"; 
    src="Store/SmallImages/ActionHighBloodPressure2.gif"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 36		
	href="Store/HK/ActionPlanHighCholesterol.html"; 
    height=144; alt="Action Plan for High Cholesterol"; 
    src="Store/SmallImages/ActionPlanHighCholesterol2.gif"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 37		
	href="Store/HK/ActionPlanAllergies.html"; 
    height=144; alt="Action Plan For Allergies: Your guide to managing exercise..."; 
    src="Store/SmallImages/ActionPlanAllergies2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 38		
	href="Store/HK/ExercisePrescription.html"; 
    height=144; alt="Exercise Prescription: A Case Study Approach to the ACSM Guideline"; 
    src="Store/SmallImages/ExercisePrescription2E2.gif"; 
    width=102;
    images[images.length] = new image(src, href, height, width, alt);	
	
	// 39		
	href="Store/HK/StrengthTrainingPast50.html"; 
    height=144; alt="Strength Training Past 50"; 
    src="Store/SmallImages/StrengthTrainingPast502E2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 40		
	href="Store/HK/StretchingAnatomy.html"; 
    height=144; alt="Stretching Anatomy"; 
    src="Store/SmallImages/StretchingAnatomy.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 41		
	href="Store/HK/AthleticDevelopment.html"; 
    height=144; alt="Athletic Development"; 
    src="Store/SmallImages/AthleticDevelopment2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 42		
	href="Store/HK/SportPsychCoaches.html"; 
    height=144; alt="Sport Psychology for Coaches"; 
    src="Store/SmallImages/SportPsychCoaches2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 43		
	href="Store/HK/DevelopingEffectivePhysActProg.html"; 
    height=144; alt="Developing Effective Physical Activity Programs"; 
    src="Store/SmallImages/DevelopingEffectivePhysActP.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 44		
	href="Store/HL/MedicalFitnessAsssocGuidelinesBook.html"; 
    height=144; alt="Medical Fitness Center Facilities"; 
    src="Store/SmallHLBooks/MedicalFitnessAssocStandGui.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 45		
	href="Store/HK/MotivatingPeoplePhysActive.html"; 
    height=144; alt="Motivating People to Be Physically Active"; 
    src="Store/SmallImages/MotivatingPeoplePhysActive.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 46		
	href="Store/HK/PerformanceEnhancingSubst.html"; 
    height=144; alt="Performance-Enhancing Substances in Sport and Exercise"; 
    src="Store/SmallImages/PerformanceEnhancingSubstan.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);	

	// 47		
	href="Store/HK/CompleteBookPersonalTrain.html"; 
    height=144; alt="Complete Book of Personal Training"; 
    src="Store/SmallImages/CompleteBookPersonalTrainin.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 48		
	href="Store/HK/PowerSportsPerfDVD.html"; 
    height=144; alt="Power for Sports Performance DVD"; 
    src="Store/SmallImages/PowerForSportsPerformance.gif"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);

    	// 49
    	href="Store/HK/BiggerFasterStronger.html";
    height=144; alt="Bigger Faster Stronger"; 
    src="Store/SmallImages/BiggerFasterStronger2.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 50	
	href="Store/HK/ExerciseEliteGolfPerformance.html"; 
    height=144; alt="Exercise For Elite Golf Performance"
    src="Store/SmallImages/ExerciseEliteGolf.jpg"; 
    width=105;
    images[images.length] = new image(src, href, height, width, alt);	

	// 51	
	href="Store/HK/HealthFitnessManagment.html"; 
    height=144; alt="Health Fitness Management"
    src="Store/SmallImages/HealthFitnessManagement2E2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	

	// 52		
	href="Store/HK/LowBackDisorders.html"; 
    height=144; alt="Low Back Disorders"; 
    src="Store/SmallImages/LowBackDisorders2E2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);

	// 53
	href="Store/HK/LactateThresholdTraining.html"; 
    height=144; alt="Lactate Threshold Training"; 
    src="Store/SmallImages/LactateThresholdTraining2.jpg"; 
    width=101; 
    images[images.length] = new image(src, href, height, width, alt);

	// 54	
	href="Store/HK/MethodsGroupExerciseInstr.html"; 
    height=144; alt="Methods of Group Exercise Instruction"
    src="Store/SmallImages/MethodsGroupExerciseInstruc.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 55		
	href="Store/HK/MorningCardioWorkouts.html"; 
    height=144; alt="Morning Cardio Workouts"; 
    src="Store/SmallImages/MorningCardioWorkouts.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 56		
	href="Store/HK/PhysicalActivityInterventionsChildren.html"; 
    height=144; alt="Physical Activity Interventions in Children and Adolescents"; 
    src="Store/SmallImages/PhysicalActInterventionsChi.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 57	
	href="Store/HK/ExerciseFrailElders.html"; 
    height=144; alt="Exercise for Frail Elders"; 
    src="Store/SmallImages/ExerciseFrailElders2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	

	// 58	
	href="Store/HK/SportsInjuriesGuidbook.html"; 
    height=144; alt="Sports Injuries Guidebook"; 
    src="Store/SmallImages/SportsInjuriesGuidebook2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 59		
	href="Store/HK/PositiveBehaviorManagementPA.html"; 
    height=144; alt="Positive Behavior Management in Physical Activity Settings"; 
    src="Store/SmallImages/PositiveBehaviorManagementP2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 60		
	href="Store/HK/SwimmingAnatomy.html"; 
    height=144; alt="Swimming Anatomy"; 
    src="Store/SmallImages/SwimmingAnatomy.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 61		
	href="Store/HK/RunnersEdge.html"; 
    height=144; alt="The Runner's Edge"; 
    src="Store/SmallImages/RunnersEdge.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 62		
	href="Store/HK/TherapeuticModalitiesMusculoskeletalInjuries.html"; 
    height=144; alt="Therapeutic Modalities for Musculoskeletal Injuries"; 
    src="Store/SmallImages/TherapeuticModalitiesMuscul.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

			
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "store") {
    	// 0
    	href="Store/HK/BiggerFasterStronger.html";
    height=144; alt="Bigger Faster Stronger"; 
    src="Store/SmallImages/BiggerFasterStronger2.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/StrengthBallTraining.html"; 
    height=144; alt="Strength Ball Training"; 
    src="Store/SmallImages/StrengthBallTraining.jpg"; 
    width=101; 
    images[images.length] = new image(src, href, height, width, alt);

	// 2		
	href="Store/HL/StabilityBallTraining.html"; 
    height=144; alt="Stability Ball Training"; 
    src="Store/SmallHLBooks/StabilityBallTraining3.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/DesigningResistanceTrainPr.html"; 
    height=144; alt="Designing Resistance Training Programs"; 
    src="Store/SmallImages/DesigningResistanceTrainPr2.jpg"; 
    width=107;
    images[images.length] = new image(src, href, height, width, alt);	

	// 4		
	href="Store/HK/NSCAEssentialsPersonalTrn.html"; 
    height=144; alt="NSCAs Essentials of Personal Training"; 
    src="Store/SmallImages/NSCAEssentialsPersonalTrain.jpg"; 
    width=107; 
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HK/SculptingHerBodyPerfect.html"; 
    height=144; alt="Sculpting Her Body Perfect"; 
    src="Store/SmallImages/SculptingHerBodyPerfect2.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 6
	href="Store/HK/ClinicalGuideSportsInjur.html"; 
    height=144; alt="Clinical Guide to Sports Injuries"; 
    src="Store/SmallImages/ClinicalGuideSportsInjur2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 7	
	href="Store/HK/PathAthleticPower.html"; 
    height=144; alt="The Path to Athletic Power"; 
    src="Store/SmallImages/PathAthleticPower.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 8	
	href="Store/HK/52WeekHockeyTraining.html"; 
    height=144; alt="52-Week Hockey Training"
    src="Store/SmallImages/52WeekHockeyTraining2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 9	
	href="Store/HK/52WeekFootballTraining.html"; 
    height=144; alt="52-Week Football Training"
    src="Store/SmallImages/52WeekFootballTraining2.jpg"; 
    width=105;
    images[images.length] = new image(src, href, height, width, alt);	

	// 10	
	href="Store/HK/52WeekBaseballTraining.html"; 
    height=144; alt="52-Week Baseball Training"
    src="Store/SmallImages/52WeekBaseballTraining2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	

	// 11	
	href="Store/HK/CompleteConditioningBasketball.html"; 
    height=144; alt="Complete Conditioning for Basketball"
    src="Store/SmallImages/CompleteCondBasketball2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 12	
	href="Store/HK/ExerciseEliteGolfPerformance.html"; 
    height=144; alt="Exercise For Elite Golf Performance"
    src="Store/SmallImages/ExerciseEliteGolf.jpg"; 
    width=105;
    images[images.length] = new image(src, href, height, width, alt);	

	// 13	
	href="Store/HK/PeriodizationTrainingSport.html"; 
    height=144; alt="Periodization Training for Sports"
    src="Store/SmallImages/PeriodizationTrainingSports.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 14		
	href="Store/HL/FoundationsCoreStabilityBaDVD.html"; 
    height=144; alt="Foundations of Core Stability and Balance Training"; 
    src="Store/SmallHLBooks/FoundationsCoreStabilityDVD.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);

	// 15	
	href="Store/HL/ACEGuideYouthFitness.html"; 
    height=144; alt="ACEs Guide to Youth Fitness Video"
    src="Store/SmallHLBooks/ACEGuideYouthFitnessDVD.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 16	
	href="Store/HL/PreAndPostNatalFitness.html"; 
    height=144; alt="Pre- and Post-Natal Fitness"
    src="Store/SmallHLBooks/PreAndPostNatalFitness.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 17	
	href="Store/HK/HighPoweredPlyometicsVideo.html"; 
    height=144; alt="High-Powered Plyometrics DVD"
    src="Store/SmallImages/HighPoweredPlyometricsDVD2.jpg"; 
    width=104;
    images[images.length] = new image(src, href, height, width, alt);

	// 18	
	href="Store/HL/PersonalTrainersBusiness.html"; 
    height=144; alt="The Personal Trainers Business Survival Guide"
    src="Store/SmallHLBooks/PersonalTrainersBusiness.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 19	
	href="Store/HK/MethodsGroupExerciseInstr.html"; 
    height=144; alt="Methods of Group Exercise Instruction"
    src="Store/SmallImages/MethodsGroupExerciseInstruc.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 20	
	href="Store/HK/GoldMedalTrackFieldDVD.html"; 
    height=144; alt="Gold Medal Track and Field DVD"
    src="Store/SmallImages/GoldMedalTrackFieldDVD2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 21	
	href="Store/Other/ACSMCertificationReview.html"; 
    height=144; alt="ACSM Certification Review"
    src="Store/OtherImages/ACSMCertificationReview2.gif"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 22	
	href="Store/HK/ACSMHealthFitnessFacility.html"; 
    height=144; alt="ACSM's Health/Fitness Facility Standards and Guidelines"
    src="Store/SmallImages/ACSMHealthFitnessFacility2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);

	// 23	
	href="Store/HK/ACSMExManPersonsChronicDis.html"; 
    height=144; alt="ACSM's Exercise Management for Persons with Chronic Diseases and Disabilities"
    src="Store/SmallImages/ACSMExManPersonsChronicDis2.jpg"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);

	// 24	
	href="Store/HK/CreativePlayActivities.html"; 
    height=150; alt="Creative Play Activities for Children With Disabilities"
    src="Store/SmallImages/CreativePlayActivities2.gif"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 25		
	href="Store/HK/OvertrainingAthletes.html"; 
    height=144; alt="Overtraining Athletes"; 
    src="Store/SmallImages/OvertrainingAthletes2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 26	
	href="Store/HK/Jumpmetrics.html"; 
    height=144; alt="Jumpmetrics"
    src="Store/SmallImages/Jumpmetrics.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 27	
	href="Store/HK/MassageForSportsHealthCare.html"; 
    height=144; alt="Massage for Sports Health Care Video"
    src="Store/SmallImages/MassageForSportsHealthCare2.gif"; 
    width=80;
    images[images.length] = new image(src, href, height, width, alt);

	// 28	
	href="Store/HK/PreparingAthleticTrnCertEx.html"; 
    height=144; alt="Preparing for the Athletic Trainers' Certification Examination"
    src="Store/SmallImages/PreparingAthleticTrainerCer.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 29		
	href="Store/HK/StrongerArmsUpperBody.html"; 
    height=144; alt="Stronger Arms and Upper Body"; 
    src="Store/SmallImages/StrongerArmsUpperBody2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 30
	href="Store/HK/TrainingSpeedAgilityQuick.html"; 
    height=144; alt="Training for Speed Agility and Quickness Book and DVD"; 
    src="Store/SmallImages/TrainingSpeedAgilityQuick2.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);

	// 31		
	href="Store/HK/PE2theMax.html"; 
    height=144; alt="PE2theMax"; 
    src="Store/SmallImages/PE2theMax2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 32		
	href="Store/HK/NoGymNoProblem.html"; 
    height=144; alt="No Gym? No Problem!"; 
    src="Store/SmallImages/NoGymNoProblem2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 33		
	href="Store/HL/FitnessManagement.html"; 
    height=144; alt="Fitness Management"; 
    src="Store/SmallHLBooks/FitnessManagement2.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);

	// 34		
	href="Store/HK/Pilates.html"; 
    height=116; alt="Pilates"; 
    src="Store/HKImages/Pilates.jpg"; 
    width=150;
    images[images.length] = new image(src, href, height, width, alt);

	// 35		
	href="Store/HL/KICKboxFitness.html"; 
    height=144; alt="KICKbox Fitness DVD"; 
    src="Store/SmallHLBooks/KickBoxFitnessDVD2.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);

	// 36		
	href="Store/HK/CompleteConditioningTennis.html"; 
    height=144; alt="Complete Conditioning for Tennis"; 
    src="Store/SmallImages/CompleteCondTennis2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 37		
	href="Store/HK/CompleteConditioningBasebl.html"; 
    height=144; alt="Complete Conditioning for Baseball"; 
    src="Store/SmallImages/CompleteCondBaseballNew2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 38		
	href="Store/HK/ExerTechnManResisTrain.html"; 
    height=144; alt="Exercise Technique Manual for Resistance Training"; 
    src="Store/SmallImages/ExerTechManualResistTrainNS.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 39		
	href="Store/HK/BackStability.html"; 
    height=144; alt="Back Stability"; 
    src="Store/SmallImages/BackStability2E.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 40		
	href="Store/HK/PsychologyicalDynamicsSportEx.html"; 
    height=144; alt="Psychological Dynamics of Sport and Exercise"; 
    src="Store/SmallImages/PsychologicalDynamicsSportE.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 41		
	href="Store/HK/SuccessfulProgramsFitnessClubs.html"; 
    height=144; alt="Successful Programs for Fitness and Health Clubs"; 
    src="Store/SmallImages/SuccessfulProgramsFitnessCl.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 42		
	href="Store/HK/YouthPhysActivSedBehavior.html"; 
    height=144; alt="Youth Physical Activity and Sedentary Behavior: Challenges and Solutions"; 
    src="Store/SmallImages/YouthPhysActivSedentBehavio.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 43		
	href="Store/HK/SportPromotionSales.html"; 
    height=144; alt="Sports Promotion and Sales Management"; 
    src="Store/SmallImages/SportPromotionSalesMgmt2.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 44		
	href="Store/HK/FoundationsProfessPersTrain.html"; 
    height=144; alt="Can-Fit-Pro Foundations of Professional Personal Training"; 
    src="Store/SmallImages/FoundationsProfessionPersTr.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 45		
	href="Store/HK/InstructingHathYoga.html"; 
    height=144; alt="Instructing Hatha Yoga"; 
    src="Store/SmallImages/InstructingHathaYoga2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	
							
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "nutrition") {
    	// 0
    	href="Store/HK/PowerEating.html";
    height=144; alt="Power Eating"; 
    src="Store/SmallImages/PowerEating2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/NancyClarksSportsNutrition.html"; 
    height=144; alt="Nancy Clarks Sports Nutrition Guidebook"; 
    src="Store/SmallImages/NancyClark2.jpg"; 
    width=96; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2
	href="Store/HK/EatingOnTheRun.html"; 
    height=144; alt="Eating on the Run"; 
    src="Store/SmallImages/EatingRun.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/PracticalSportsNutrition.html"; 
    height=144; alt="Practical Sports Nutrition"; 
    src="Store/SmallImages/PracticalSportsNutrition2.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/FuelYoungAthletes.html"; 
    height=144; alt="Fuel for Young Athletes"; 
    src="Store/SmallImages/FuelYoungAthletes.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HK/DisorderedEatingAmongAthl.html"; 
    height=144; alt="Disordered Eating Amoung Athletes"; 
    src="Store/SmallImages/DisorderedEatingAmongAthlet.jpg"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);	

	// 6		
	href="Store/HK/SupplementsForEnduranceAth.html"; 
    height=144; alt="Supplements for Endurance Athletes"; 
    src="Store/SmallImages/SupplementsForEnduranceAth2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 7		
	href="Store/HK/DrinktoWinPoster.html"; 
    height=144; alt="Drink to Win Poster"; 
    src="Store/SmallImages/DrinktoWin.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 8		
	href="Store/HK/EnduranceSportsNutrition.html"; 
    height=144; alt="Endurance Sports Nutrition"; 
    src="Store/SmallImages/EnduranceSportsNutrition.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);							

	// 9		
	href="Store/HK/CreatineThePowerSupplement.html"; 
    height=144; alt="Creatine The Power Supplement"; 
    src="Store/SmallImages/CreatineThePowerSupplement2.gif"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);		

	// 10		
	href="Store/HK/DietsDesignedAthletes.html"; 
    height=144; alt="Diets Designed for Athletes"; 
    src="Store/SmallImages/DietsDesignedAthletes2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 11		
	href="Store/HL/ACELifestyleWeightManual.html"; 
    height=144; alt="ACE Lifestyle and Weight Management Consultant Manual"; 
    src="Store/SmallHLBooks/ACELifestyleWeightManual.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);

	// 12		
	href="Store/HK/FreeRadicalsExerciseAging.html"; 
    height=144; alt="Free Radicals in Exercise and Aging"; 
    src="Store/SmallImages/FreeRadicalExerciseAging.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);		

	// 13		
	href="Store/HK/SportNutritionHealthPerfor.html"; 
    height=144; alt="Sport Nutrition for Health and Performance"; 
    src="Store/SmallImages/SportNutritionHealthPerform.jpg"; 
    width=105;
    images[images.length] = new image(src, href, height, width, alt);		

	// 14		
	href="Store/HK/ActiveStartforHealthyKids.html"; 
    height=144; alt="Active Start for Healthy Kids"; 
    src="Store/SmallImages/ActiveStartHealthyKids2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 15		
	href="Store/HK/SportNutrition.html"; 
    height=144; alt="Sport Nutrition"; 
    src="Store/SmallImages/SportNutrition2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);		

	// 16		
	href="Store/HK/AdvancedSportsNutrition.html"; 
    height=144; alt="Advanced Sports Nutrition"; 
    src="Store/SmallImages/AdvancedSportsNutrition2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 17		
	href="Store/HK/GoldMedalNutrition.html"; 
    height=144; alt="Gold Medal Nutrition"; 
    src="Store/SmallImages/GoldMedalNutrition2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 18		
	href="Store/HK/PhysicalActType2Diabetes.html"; 
    height=144; alt="Physical Activity and Type 2 Diabetes"; 
    src="Store/SmallImages/PhysicalActivType2Diabetes2.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 19		
	href="Store/DietPower/DietPower.html"; 
    height=144; alt="DietPower Weight and Nutrition Coach Software"; 
    src="Store/DietPowerImages/dietpowerbox_small.jpg"; 
    width=85;
    images[images.length] = new image(src, href, height, width, alt);

	// 20		
	href="Store/HK/FitnessNutritionSpecialDietNeeds.html"; 
    height=144; alt="Fitness Nutrition for Special Dietary Needs"; 
    src="Store/SmallImages/FitnessNutritionSpecialDiet.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 21		
	href="Store/HK/VegetarianSportsNutr.html"; 
    height=144; alt="Vegetarian Sports Nutrition"; 
    src="Store/SmallImages/VegetarianSportsNutr.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 22		
	href="Store/HK/DiabeticAthleteHandbook.html"; 
    height=144; alt="Diabetic Athlete's Handbook"; 
    src="Store/SmallImages/DiabeticAthleteHandbook2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 23		
	href="Store/HL/NutritionFemaleAthlete.html"; 
    height=144; alt="Nutrition for the Female Athlete"; 
    src="Store/SmallHLBooks/NutritionFemaleAthlete.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 24		
	href="Store/HK/SportNutritionCoaches.html"; 
    height=144; alt="Sport Nutrition for Coaches"; 
    src="Store/SmallImages/SportNutritionCoaches.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 25		
	href="Store/HK/SportNutritionHealthPerfor.html"; 
    height=144; alt="Sport Nutrition for Health and Performance"; 
    src="Store/SmallImages/SportNutritionHealthPerformance.jpg"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);

	// 26		
	href="Store/HK/EnergyEveryDay.html"; 
    height=144; alt="Energy Every Day"; 
    src="Store/SmallImages/EnergyEveryDay.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
		
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "journal") {
    	// 0
    	href="Store/HK/PhysiologySportExercise.html";
    height=144; alt="Physiology of Sport and Exercise"; 
    src="Store/SmallImages/PhysiologySportsExercise.jpg"; 
    width=107;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/KineticAnatomy.html"; 
    height=144; alt="Kinetic Anatomy Textbook & CD-ROM"; 
    src="Store/SmallImages/KineticAnatomy2.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2
	href="Store/HK/ChildrensExercisePhysiology.html"; 
    height=144; alt="Childrens Exercise Physiology"; 
    src="Store/SmallImages/ChildrensExercisePhysiology.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/MolecularCellularExercisePhys.html"; 
    height=144; alt="Molecular and Cellular Exercise Physiology"; 
    src="Store/SmallImages/MolecularCellExPhysiology.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/ScienceFlexibility.html"; 
    height=144; alt="Science of Flexibility"; 
    src="Store/SmallImages/ScienceFlexibility.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 5	
	href="Store/HK/ClinicalOrthoAssessGuide.html"; 
    height=144; alt="The Clinical Orthopedic Assessment Guide"; 
    src="Store/SmallImages/ClinicalOrthopedicAsseGuide.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);		
			
    	// 6
	href="Store/HK/TextbookWorkPhysiology.html"; 
    height=144; alt="Textbook of Work Physiology"; 
    src="Store/SmallImages/TextbookWorkPhysiology2.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 7	
	href="Store/HK/SportMechanicsCoaches.html"; 
    height=144; alt="Sport Mechanics for Coaches"; 
    src="Store/SmallImages/SportMechanicsCoaches.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 8		
	href="Store/HK/ExercisePhysiologyHealthCP.html"; 
    height=144; alt="Exercise Physiology for Health Care Professionals"; 
    src="Store/SmallImages/ExercisePhysiologyHealthCar.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 9		
	href="Store/HK/ExerciseEndocrinology.html"; 
    height=144; alt="Exercise Endocrinology"; 
    src="Store/SmallImages/ExerciseEndocrinology.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);

	// 10		
	href="Store/HK/PhysicalDimensionsAging.html"; 
    height=144; alt="Physical Dimensions of Aging"; 
    src="Store/SmallImages/PhysicalDimensionsAging.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 11		
	href="Store/HK/QualitativeAnalysisHumanMv.html"; 
    height=144; alt="Qualitative Analysis of Human Movement"; 
    src="Store/SmallImages/QualitativeAnalysisHumanMov.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 12		
	href="Store/HK/PhysicalActivityEpeidem.html"; 
    height=144; alt="Physical Activity Epidemilogy"; 
    src="Store/SmallImages/PhysicalActivityEpidem2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 13		
	href="Store/HK/ResearchMethodsPhysicalAct.html"; 
    height=144; alt="Research Methods in Physical Activity"; 
    src="Store/SmallImages/ReasearchMethodsPhysicalAct.jpg"; 
    width=107;
    images[images.length] = new image(src, href, height, width, alt);

	// 14		
	href="Store/HK/EssentialsPrimaryCareSport.html"; 
    height=144; alt="Essentials of Primary Care Sports Medicine"; 
    src="Store/SmallImages/EssentialsPrimaryCareSports.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 15		
	href="Store/HK/UnstableAnkle.html"; 
    height=144; alt="The Unstable Ankle"; 
    src="Store/SmallImages/UnstableAnkle.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 16		
	href="Store/HK/BiomechanicsMusculoskeleta.html"; 
    height=144; alt="Biomechanics of Musculoskeletal Injury"; 
    src="Store/SmallImages/BiomechanicsMusculoskeletal.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 17		
	href="Store/HK/ScientificClinicApElastRes.html"; 
    height=144; alt="The Scientific and Clinical Application of Elastic Resistance"; 
    src="Store/SmallImages/ScientificClinAppElasticRes.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 18		
	href="Store/HK/AttentionAndMotorSkillLearning.html"; 
    height=144; alt="Attention and Motor Skill Learning"; 
    src="Store/SmallImages/AttentionandMotorSkillLearn.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 19		
	href="Store/HK/ClinicalExercisePhysiology.html"; 
    height=144; alt="Clinical Exercise Physiology"; 
    src="Store/SmallImages/ClinicalExercisePhysiology2.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 20		
	href="Store/HK/NeuromechanicsHumanMvmt.html"; 
    height=144; alt="Neuromechanics of Human Movement"; 
    src="Store/SmallImages/Neuromechanics-of-Human-Mov.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 21		
	href="Store/HK/PediatricExerciseMedicine.html"; 
    height=144; alt="Pediatric Exercise Medicine"; 
    src="Store/SmallImages/PediatricExerciseMedicine.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 22		
	href="Store/HK/ResistanceTrainingHealthRe.html"; 
    height=144; alt="Resistance Training for Health and Rehabilitation"; 
    src="Store/SmallImages/ResistanceTrainingHealthReh.jpg"; 
    width=90;
    images[images.length] = new image(src, href, height, width, alt);

	// 23		
	href="Store/HK/ExerciseRehabilitationMed.html"; 
    height=144; alt="Exercise in Rehabilitation Medicine"; 
    src="Store/SmallImages/ExerciseRehabilitationMedic2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 24		
	href="Store/HK/AdvancesExerciseImmunology.html"; 
    height=144; alt="Advances in Exercise Immunology"; 
    src="Store/SmallImages/AdvancesExerciseImmunology.jpg"; 
    width=87;
    images[images.length] = new image(src, href, height, width, alt);

	// 25		
	href="Store/HK/WomensFitnessProgramDev.html"; 
    height=144; alt="Women's Fitness Program Development"; 
    src="Store/SmallImages/WomensFitnessProgramDevelop.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 26		
	href="Store/HK/PhysiologicalAspectsSportT.html"; 
    height=144; alt="Physiological Aspects of Sport Training and Performance"; 
    src="Store/SmallImages/PhysiologyAspectsSportTrain.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 27		
	href="Store/HK/BiochemistryPrimerExScienc.html"; 
    height=144; alt="Biochemistry Primer for Exercise Science"; 
    src="Store/SmallImages/BiochemistryPrimerExScience.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 28		
	href="Store/HK/BiophysicalFoundationsHumanM.html"; 
    height=144; alt="The Biophysical Foundations of Human Movement"; 
    src="Store/SmallImages/BiophysicalFoundationsHuman.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 29		
	href="Store/HK/ClassicsMovementScience.html"; 
    height=144; alt="Classics in Movement Science"; 
    src="Store/SmallImages/ClassicsMovementScience.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 30		
	href="Store/HK/CoronaryArteryDisease.html"; 
    height=144; alt="Coronary Artery Disease"; 
    src="Store/SmallImages/CoronaryArteryDisease.jpg"; 
    width=102;
    images[images.length] = new image(src, href, height, width, alt);

	// 31		
	href="Store/HK/EnergeticsHumanActivity.html"; 
    height=144; alt="Energetics of Human Activity"; 
    src="Store/SmallImages/EnergeticsHumanActivity.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 32		
	href="Store/HK/ExerciseCirculationHealthD.html"; 
    height=144; alt="Exercise and Circulation in Health and Disease"; 
    src="Store/SmallImages/ExerciseCirculationHealthDi.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 33		
	href="Store/HK/FoundationsSportExerPychol.html"; 
    height=144; alt="Foundations of Sport and Exercise Psychology"; 
    src="Store/SmallImages/FoundationsSportExPsycholog.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);

	// 34		
	href="Store/HK/GeneticsFitnessPhysicalPer.html"; 
    height=144; alt="Genetics of Fitness and Physical Performance"; 
    src="Store/SmallImages/GeneticsFitnessPhysicalPerf.jpg"; 
    width=92;
    images[images.length] = new image(src, href, height, width, alt);

	// 35		
	href="Store/HK/BiomechanicsMusculoskeleta.html"; 
    height=144; alt="Biomechanics of Musculoskeletal Injury"; 
    src="Store/SmallImages/BiomechanicsMuscInjury2E.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 36		
	href="Store/HK/InnovativeAnalysisHumanMov.html"; 
    height=144; alt="Innovative Analyses of Human Movement"; 
    src="Store/SmallImages/InnovativeAnalysisHumanMov.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 37		
	href="Store/HK/IsokineticsHumanPerformanc.html"; 
    height=144; alt="Isokinetics in Human Performance"; 
    src="Store/SmallImages/IsokineticsHumanPerformance.jpg"; 
    width=94;
    images[images.length] = new image(src, href, height, width, alt);

	// 38		
	href="Store/HK/KineticsHumanMotion.html"; 
    height=144; alt="Kinetics of Human Motion"; 
    src="Store/SmallImages/KineticsHumanMotion.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 39		
	href="Store/HK/NeuromuscularAspectPhysAct.html"; 
    height=144; alt="Neuromuscular Aspects of Physical Activity"; 
    src="Store/SmallImages/NeuromuscularAspectsPhysAct.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 40		
	href="Store/HK/OvertrainingSport.html"; 
    height=144; alt="Overtraining in Sport"; 
    src="Store/SmallImages/OvertrainingSport.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 41		
	href="Store/HK/PhysicalActivityBoneHealth.html"; 
    height=144; alt="Physical Activity and Bone Health"; 
    src="Store/SmallImages/PhysicalActivityBoneHealth.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 42		
	href="Store/HK/PhysicalActivityEpeidem.html"; 
    height=144; alt="Physical Activity Epidemiology"; 
    src="Store/SmallImages/PhysicalActivityEpidem2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 43		
	href="Store/HK/PropriocNeuromusContJntStb.html"; 
    height=144; alt="Proprioception and Neuromuscular Control in Joint Stability"; 
    src="Store/SmallImages/ProprioNeuromusConJointStab.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 44		
	href="Store/HK/ResearchMethodsBiomechanic.html"; 
    height=144; alt="Research Methods in Biomechanics"; 
    src="Store/SmallImages/ResearchMethodsBiomechanics.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 45		
	href="Store/HK/StructureFunctionMusculosk.html"; 
    height=144; alt="Structure and Function of the Musculoskeletal System"; 
    src="Store/SmallImages/StructureFunctionMusculosk.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 46		
	href="Store/HK/UnstableAnkle.html"; 
    height=144; alt="The Unstable Ankle"; 
    src="Store/SmallImages/UnstableAnkle.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 47		
	href="Store/HK/SketetalMuscle.html"; 
    height=144; alt="Skeletal Muscle"; 
    src="Store/SmallImages/SkeletalMuscle2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 48		
	href="Store/HK/Dynatomy.html"; 
    height=144; alt="Dynatomy Package"; 
    src="Store/SmallImages/Dynatomy2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 49		
	href="Store/HK/ExerciseMetabolism.html"; 
    height=144; alt="Exercise Metabolism"; 
    src="Store/SmallImages/ExerciseMetabolism2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 50		
	href="Store/HK/SportPhysiologyCoaches.html"; 
    height=144; alt="Sport Physiology for Coaches"; 
    src="Store/SmallImages/SportPhysiologyCoaches2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 51		
	href="Store/HK/NormsforFitnessPerformanceandHealth.html"; 
    height=144; alt="Norms for Fitness, Performance, and Health"; 
    src="Store/SmallImages/NormsforFitnessPerformancea.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 52		
	href="Store/HK/BioenergeticsPrimerExerciseScience.html"; 
    height=144; alt="Bioenergetics Primer for Exercise Science"; 
    src="Store/SmallImages/BioengeticsPrimerExerciseSc.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 53		
	href="Store/HK/PhysicalActivityandHealth.html"; 
    height=144; alt="Physical Activity and Health"; 
    src="Store/SmallImages/PhysicalActivityandHealth2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 54		
	href="Store/HK/PhysicalActivityInterventionsChildren.html"; 
    height=144; alt="Physical Activity Interventions in Children and Adolescents"; 
    src="Store/SmallImages/PhysicalActInterventionsChi.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 55		
	href="Store/HK/LowBackDisorders.html"; 
    height=144; alt="Low Back Disorders"; 
    src="Store/SmallImages/LowBackDisorders2E2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);

	// 56		
	href="Store/HK/BiomechanicalAnalysFundamentHumanMvt.html"; 
    height=144; alt="Biomechanical Analysis of Fudamental Human Movements"; 
    src="Store/SmallImages/BiomechanicalAnalysisFundam.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 57		
	href="Store/HK/SkeletalMuscleDamageRepair.htmltHumanMvt.html"; 
    height=144; alt="Skeletal Muscle Damage and Repair: Mechanisms and Interventions"; 
    src="Store/SmallImages/SkeletalMuscleDamageRepair2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 58		
	href="Store/HK/ClinicalOrthoAssessGuide.html"; 
    height=144; alt="Clinical Orthopedic Assessment Guide"; 
    src="Store/SmallImages/ClinicalOrthopedicAssessmen.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 59		
	href="Store/HK/AppliedAnatomyBiomechanics2E.html"; 
    height=144; alt="Applied Anatomy and Biomechanics in Sport"; 
    src="Store/SmallImages/AppliedAnatomyBiomechanicsS.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 60		
	href="Store/HK/QualitativeResearchPhysActHealthPro.html"; 
    height=144; alt="Qualitative Research in Physical Activity and the Health Professions"; 
    src="Store/SmallImages/QualitativeResearchPhysicalActivityHealthPro.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 61		
	href="Store/HK/AdvancedEnvironmentalExercisePhysiology.html"; 
    height=144; alt="Advanced Environmental Exercise Physiology"; 
    src="Store/SmallImages/AdvancedEnvironmentalExerci.jpg"; 
    width=98;
    images[images.length] = new image(src, href, height, width, alt);
	

// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "aerobics") {
    	// 0
    	href="Store/HK/DanielsRunningFormula.html";
    height=144; alt="Daniels Running Formula"; 
    src="Store/SmallImages/DanielsRunningFormula.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/LactateThresholdTraining.html"; 
    height=144; alt="Lactate Threshold Training"; 
    src="Store/SmallImages/LactateThresholdTraining2.jpg"; 
    width=101; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2
	href="Store/HK/RunningWell.html"; 
    height=144; alt="Running Well"; 
    src="Store/SmallImages/RunningWell2.jpg"; 
    width=116;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/SwimmingPast50.html"; 
    height=144; alt="Swimming Past 50"; 
    src="Store/SmallImages/SwimmingPast502.gif"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/GuidelinesCardRehabSecPrev.html"; 
    height=144; alt="Guidelines for Cardiac Rehabilitation and Secondary Prevention Programs"; 
    src="Store/SmallImages/GuidelinesCardiacRehSecPrv2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HK/MethodsGroupExerciseInstr.html"; 
    height=144; alt="Methods of Group Exercise Instruction"; 
    src="Store/SmallImages/MethodsGroupExerciseInstruc.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	

	// 6		
	href="Store/HK/AdvancingFrontCardiopulReh.html"; 
    height=144; alt="Advancing the Frontiers of Cardiopulmonary Rehabilitation"; 
    src="Store/SmallImages/AdvancingFrontCardioPulmReh.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 7		
	href="Store/HK/CyclingPast50.html"; 
    height=144; alt="Cycling Past 50"; 
    src="Store/SmallImages/CyclingPast502.gif"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);	

	// 8		
	href="Store/HK/LoreRunning.html"; 
    height=144; alt="Lore of Running"; 
    src="Store/SmallImages/LoreRunning.jpg"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);	

	// 9		
	href="Store/HK/ChampionshipSwimTraining.html"; 
    height=144; alt="Championship Swim Training"; 
    src="Store/SmallImages/ChampionshipSwimTraining.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 10		
	href="Store/HK/BikeRacing101.html"; 
    height=144; alt="Bike Racing 101"; 
    src="Store/SmallImages/BikeRacing101.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 11		
	href="Store/HK/CoachingTrackFieldSuccessf.html"; 
    height=144; alt="Coaching Track and Field Successfully"; 
    src="Store/SmallImages/CoachingTrackFieldSuccessfu.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 12		
	href="Store/HK/CoachingSwimmingSuccessful.html"; 
    height=144; alt="Coaching Swimming Successfully"; 
    src="Store/SmallImages/CoachingSwimmingSuccessful.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 13		
	href="Store/HK/FitnessRunning.html"; 
    height=144; alt="Fitness Running"; 
    src="Store/SmallImages/FitnessRunning.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 14		
	href="Store/HK/BreakthroughSwimming.html"; 
    height=144; alt="Breakthrough Swimming"; 
    src="Store/SmallImages/BreakthroughSwimming.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 15		
	href="Store/HK/TriathlonTraining.html"; 
    height=144; alt="Triathlon Training"; 
    src="Store/SmallImages/TriathlonTraining.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 16		
	href="Store/HK/FitnessSwimming.html"; 
    height=144; alt="Fitness Swimming"; 
    src="Store/SmallImages/FitnessSwimming22.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 17		
	href="Store/HK/USATrackFieldCoachingMan.html"; 
    height=144; alt="USA Track and Field Coaching Manual"; 
    src="Store/SmallImages/USATrackFieldCoachingManual.jpg"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);	

	// 18		
	href="Store/HK/GuidelinesPulmonaryRehabPr.html"; 
    height=144; alt="Guidelines for Pulmonary Rehabilitation Programs"; 
    src="Store/SmallImages/GuidelinesPulmonaryRehab2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 19		
	href="Store/HL/IndoorCyclingTraining.html"; 
    height=144; alt="Indoor Cycling Training DVD"; 
    src="Store/SmallHLBooks/IndoorCycleTraining.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);	

	// 20		
	href="Store/HK/MarathonTraining.html"; 
    height=144; alt="Marathon Training"; 
    src="Store/SmallImages/MarathonTraining.jpg"; 
    width=102;
    images[images.length] = new image(src, href, height, width, alt);	

	// 21		
	href="Store/HK/FitnessCycling.html"; 
    height=144; alt="Fitness Cycling"; 
    src="Store/SmallImages/FitnessCycling2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 22		
	href="Store/HK/BetterTrainingDistanceRun.html"; 
    height=144; alt="Better Training for Distance Runners"; 
    src="Store/SmallImages/BetterTrainingDistanceRun2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	

	// 23		
	href="Store/HK/HighPerformanceCycling.html"; 
    height=144; alt="High-Performance Cycling"; 
    src="Store/SmallImages/HighPerformanceCycling2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 24		
	href="Store/HK/HighTechCycling.html"; 
    height=144; alt="High-Tech Cycling"; 
    src="Store/SmallImages/HighTechCycling.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 25		
	href="Store/HK/JumpRopeTraining.html"; 
    height=144; alt="Jump Rope Training"; 
    src="Store/SmallImages/JumpRopeTraining2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 26		
	href="Store/HK/RoadRacingSeriousRunners.html"; 
    height=144; alt="Road Racing for Serious Runners"; 
    src="Store/SmallImages/RoadRacingSeriousRunners2.jpg"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);	

	// 27		
	href="Store/HK/Triathlon101.html"; 
    height=144; alt="Triathlon 101"; 
    src="Store/SmallImages/Triathlon101_2.jpg"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);	

	// 28		
	href="Store/HL/IntervalTrainingManual.html"; 
    height=144; alt="The Interval Training Manual"; 
    src="Store/SmallHLBooks/IntervalTrainingManual2.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);	

	// 29		
	href="Store/HK/AACVPRCardiacRehabResMan.html"; 
    height=144; alt="AACVPR Cardiac Rehabilitation Resource Manual"; 
    src="Store/SmallImages/AACVPRCardiacRehabResMan2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 30		
	href="Store/HK/5K10KTraining.html"; 
    height=144; alt="5K and 10K Training"; 
    src="Store/SmallImages/5K10KTraining2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 31		
	href="Store/HK/RunStrong.html"; 
    height=144; alt="Run Strong"; 
    src="Store/SmallImages/RunStrong2.jpg"; 
    width=102;
    images[images.length] = new image(src, href, height, width, alt);	

	// 32		
	href="Store/HK/TriathlonWorkoutPlanner.html"; 
    height=144; alt="Triathlon Workout Planner"; 
    src="Store/SmallImages/TriathlonWorkoutPlanner2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 33		
	href="Store/HK/MorningCardioWorkouts.html"; 
    height=144; alt="Morning Cardio Workouts"; 
    src="Store/SmallImages/MorningCardioWorkouts.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 34		
	href="Store/HK/PollocksTextCardiovDiseaseRehab.html"; 
    height=144; alt="Pollock's Textbook of Cardiovascular Disease and Rehabilitation"; 
    src="Store/SmallImages/PollocksTextCardiovDiseaseR.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 35		
	href="Store/HK/ChampTriathlonTrain.html"; 
    height=144; alt="Championship Triathlon Training"; 
    src="Store/SmallImages/ChampionshipTriatholonTrain.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 36		
	href="Store/HK/AdvancedMarthoning.html"; 
    height=144; alt="Advanced Marathoning"; 
    src="Store/SmallImages/AdvancedMarathoning2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 37		
	href="Store/HK/EnduranceSportsNutrition.html"; 
    height=144; alt="Endurance Sports Nutrition"; 
    src="Store/SmallImages/EnduranceSportsNutrition.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);			

	// 38		
	href="Store/HK/RunningPast50.html"; 
    height=144; alt="Running Past 50"; 
    src="Store/SmallImages/RunningPast502.gif"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 39		
	href="Store/HK/JumpRopeTraining.html"; 
    height=144; alt="Rene Bibaud's Complete Fundamentals of Rope Jumping DVD"; 
    src="Store/SmallImages/JumpRopeDVD2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 40		
	href="Store/HK/SwimmingDrillBook.html"; 
    height=144; alt="The Swimming Drill Book"; 
    src="Store/SmallImages/SwimmingDrillBook2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 41		
	href="Store/HK/CompleteCondSwimm.html"; 
    height=144; alt="Complete Conditioning for Swimming"; 
    src="Store/SmallImages/CompleteCondSwim2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 42		
	href="Store/HK/CoachingYouthTrackField.html"; 
    height=144; alt="Coaching Youth Track and Field"; 
    src="Store/SmallImages/CoachingYouthTrackField2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 43		
	href="Store/HK/FantasticWaterWorkouts.html"; 
    height=144; alt="Fantastic Water Workouts"; 
    src="Store/SmallImages/FantasticWaterWorkouts2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 44		
	href="Store/HK/MasteringSwimming.html"; 
    height=144; alt="Mastering Swimming"; 
    src="Store/SmallImages/Mastering-Swimming2.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 45		
	href="Store/HK/CyclingAnatomy.html"; 
    height=144; alt="Cycling Anatomy: Your Illustrated Guide for Cycling, Strength, Speed, and Endurance"; 
    src="Store/SmallImages/CyclingAnatomy.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 46		
	href="Store/HK/SwimmingAnatomy.html"; 
    height=144; alt="Swimming Anatomy"; 
    src="Store/SmallImages/SwimmingAnatomy.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 47		
	href="Store/HK/RunnersEdge.html"; 
    height=144; alt="The Runner's Edge"; 
    src="Store/SmallImages/RunnersEdge.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

								
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "beginning") {
    	// 0
    	href="Store/HK/FitnessWeightTraining.html";
    height=144; alt="Fitness Weight Training"; 
    src="Store/SmallImages/FitnessWeightTraining.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/WeightTrainingFundamentals.html"; 
    height=144; alt="Weight Training Fundamentals"; 
    src="Store/SmallImages/WeightTrainingFundamentals2.jpg"; 
    width=101; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2
	href="Store/HK/BethShawsYogaFit.html"; 
    height=144; alt="Beth Shaws YogaFit"; 
    src="Store/SmallImages/BethShawsYogaFit2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/FitnessandHealth.html"; 
    height=144; alt="Fitness and Health"; 
    src="Store/SmallImages/FitnessHealth2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/TotalTrainingForYoungChamp.html"; 
    height=144; alt="Total Training for Young Champions"; 
    src="Store/SmallImages/TotalTrainingForYoungChamp2.gif"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HK/WeightTrainingStepsSuccess.html"; 
    height=144; alt="Weight Training: Step to Success"; 
    src="Store/SmallImages/WeightTrainingStepsToSucces2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 6
	href="Store/HK/ActionPlanArthritis.html"; 
    height=144; alt="ACSM Action Plan for Arthritis"; 
    src="Store/SmallImages/ActionPlanArthritis2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 7		
	href="Store/HK/FitnessAfter50.html"; 
    height=144; alt="Fitness After 50"; 
    src="Store/SmallImages/FitnessAfter502.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 8		
	href="Store/HK/PhysicalActivityInstOldAdults.html"; 
    height=144; alt="Physical Activity Instruction of Older Adults"; 
    src="Store/SmallImages/PhysicalActivityInstrOlder2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 9 		
	href="Store/HK/FitKidsClassroomWorkoutDVD.html"; 
    height=144; alt="Fit Kids Classroom Workout DVD"; 
    src="Store/SmallImages/FitKidsClassroomWorkoutDVD2.jpg"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);		

	// 10		
	href="Store/HK/MorningPilatesWorkouts.html"; 
    height=144; alt="Morning Pilates Workouts"; 
    src="Store/SmallImages/MorningPilatesWorkouts.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 11		
	href="Store/HK/AthleticFitnessKids.html"; 
    height=144; alt="Athletic Fitness for Kids"; 
    src="Store/SmallImages/AthleticFitnessKids2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);		

	// 12 		
	href="Store/HK/YourPersonalTrainer.html"; 
    height=144; alt="Your Personal Trainer"; 
    src="Store/SmallImages/YourPersonalTrainer2.gif"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);	

	// 13 		
	href="Store/HK/WaterExercise.html"; 
    height=144; alt="Water Exercise"; 
    src="Store/SmallImages/WaterExercise2.gif"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);		

	// 14 		
	href="Store/HK/FitnessSwimming.html"; 
    height=144; alt="Fitness Swimming"; 
    src="Store/SmallImages/FitnessSwimming.jpg"; 
    width=95;
    images[images.length] = new image(src, href, height, width, alt);		

	// 15 		
	href="Store/HK/ActionPlanOsteoporosis.html"; 
    height=144; alt="Action Plan for Osteoporosis"; 
    src="Store/SmallImages/ActionPlanOsteoporosis2.gif"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);		

	// 16 		
	href="Store/HK/ActionPlanMenopause.html"; 
    height=144; alt="Action Plan for Menopause"; 
    src="Store/SmallImages/ActionPlanMenopause2.gif"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);		

	// 17 		
	href="Store/HK/FitnessWalking.html"; 
    height=144; alt="Fitness Walking"; 
    src="Store/SmallImages/FitnessWalking.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);			

	// 18		
	href="Store/HK/SwimmingStepsSuccess.html"; 
    height=144; alt="Swimming Steps to Success"; 
    src="Store/SmallImages/SwimmingStepsSuccess.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 19 		
	href="Store/HK/ACSMFitnessBook.html"; 
    height=144; alt="ACSM Fitness Book"; 
    src="Store/SmallImages/ACSMFitnessBook2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);		

	// 20 		
	href="Store/HK/FitnessRunning.html"; 
    height=144; alt="Fitness Running"; 
    src="Store/SmallImages/FitnessRunning.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 21 		
	href="Store/HK/BuildingStrengthStamina.html"; 
    height=144; alt="Building Strength and Stamina"; 
    src="Store/SmallImages/BuildingStrengthandStamina2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 22 		
	href="Store/VHI/PilatesPosterSet.html"; 
    height=144; alt="Pilates Mat Posters"; 
    src="Store/VHIImages/Posters/PilatesPosterl2.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);	

	// 23 		
	href="Store/HK/StrengthBasics.html"; 
    height=144; alt="Strength Basic"; 
    src="Store/SmallImages/StrengthBasics2.gif"; 
    width=93;
    images[images.length] = new image(src, href, height, width, alt);	

	// 24 		
	href="Store/HK/WalkingGamesActivities.html"; 
    height=144; alt="Walking Games and Activities"; 
    src="Store/SmallImages/WalkingGamesActivities.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);		

	// 25		
	href="Store/HK/StrengthTrainingPast50.html"; 
    height=144; alt="Strength Training Past 50"; 
    src="Store/SmallImages/StrengthTrainingPast502E2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 26		
	href="Store/HK/MorningStrengthWorkouts.html"; 
    height=144; alt="Morning Strength Workouts"; 
    src="Store/SmallImages/MorningStrengthWorkouts.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 27		
	href="Store/HK/CompleteConditioningTennis.html"; 
    height=144; alt="Complete Conditioning for Tennis"; 
    src="Store/SmallImages/CompleteCondTennis2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 28		
	href="Store/HK/HathaYogaIllustrated.html"; 
    height=144; alt="Hatha Yoga Illustrated"; 
    src="Store/SmallImages/HathaYogaIllustrated2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 29		
	href="Store/HK/JanetEvansTotalSwimming.html"; 
    height=144; alt="Janet Evans' Total Swimming"; 
    src="Store/SmallImages/JanetEvansTotalSwim2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);		

	// 30		
	href="Store/HK/CompleteConditioningGolf.html"; 
    height=144; alt="Complete Conditioning for Golf"; 
    src="Store/SmallImages/CompleteConditionGolf2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 31		
	href="Store/HK/HikingBackpacking.html"; 
    height=144; alt="Hiking and Backpacking"; 
    src="Store/SmallImages/HikingBackpacking2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 32		
	href="Store/HK/GuidingYogaLight.html"; 
    height=144; alt="Guiding Yoga's Light"; 
    src="Store/SmallImages/GuidingYogaLight2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 33		
	href="Store/HK/FitIn5.html"; 
    height=144; alt="Fit in 5: 5, 10 &amp; 30 Minute Workouts for a Leaner, Stronger Body"; 
    src="Store/SmallImages/FitIn5.jpg"; 
    width=116;
    images[images.length] = new image(src, href, height, width, alt);	
	
						
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "bodybuilding") {
    	// 0
    	href="Store/HK/NaturalBodybuilding.html";
    height=144; alt="Natural Bodybuilding"; 
    src="Store/SmallImages/NaturalBodybuilding.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 1		
	href="Store/HK/SculptingHerBodyPerfect.html"; 
    height=144; alt="Scultping Her Body Perfect"; 
    src="Store/SmallImages/SculptingHerBodyPerfect2.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);	
			
    	// 2
	href="Store/HK/MensBodySculpting.html"; 
    height=144; alt="Mens Body Sculpting"; 
    src="Store/SmallImages/MensBodySculpting.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/BodybuildingAnatomy.html"; 
    height=144; alt="Bodybuilding Anatomy"; 
    src="Store/SmallImages/BodybuildingAnatomy2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 4		
	href="Store/HK/PowerEating.html"; 
    height=144; alt="Power Eating"; 
    src="Store/SmallImages/PowerEating2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HK/MuscleMechanics.html"; 
    height=144; alt="Muscle Mechanics"; 
    src="Store/SmallImages/MuscleMechanics2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 6
	href="Store/HK/SeriousStrengthTraining.html"; 
    height=144; alt="Serious Strength Training"; 
    src="Store/SmallImages/SeriousStrengthTraining2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

								
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "calctest") {
    	// 0
    	href="Store/HK/PhysiologicalAssHumanFit.html"; 
    height=144; alt="Physiological Assessment of Human Fitness"; 
    src="Store/SmallImages/PhysiologicalAssHumanFit2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 1		
	href="Store/HK/SeniorFitnessTestKit.html"; 
    height=144; alt="Senior Fitness Test Kit"; 
    src="Store/SmallImages/SeniorFitnessTestKit2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2		
	href="Store/HK/FitnessProfessionalsHandbook.html"; 
    height=144; alt="Fitness Professionals Handbook"; 
    src="Store/SmallImages/FitnessProfessionalsHandboo.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/GuidelinesCardRehabSecPrev.html"; 
    height=144; alt="Guidelines for Cardic Rehabilitation and Secondary Prevention Programs"; 
    src="Store/SmallImages/GuidelinesCardiacRehSecPrv2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/Other/ACSMResourceManual.html"; 
    height=144; alt="ACSMs Resource Manual for Guidelines for Exercise Testing and Prescription"; 
    src="Store/OtherImages/ACSMResourceManual2.gif"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/Other/ACSMGuidelinesExTestingRx.html"; 
    height=144; alt="ACSMs Guidelines for Exercise Testing and Prescription"; 
    src="Store/OtherImages/ACSMGuidelinesExTestRx2.gif"; 
    width=91;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 6
	href="Store/HK/PhysiologicalTestsEliteAth.html"; 
    height=144; alt="Physiology Tests for Elite Athletes"; 
    src="Store/SmallImages/PhysiologicalTestsEliteAthl.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 7		
	href="Store/HK/BiochemicalMonitoringSport.html"; 
    height=144; alt="Biochemical Monitoring of Sport Training"; 
    src="Store/SmallImages/BiochemicalMonitoringSportT.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 8		
	href="Store/HK/MeasurmentIssuesAgingPA.html"; 
    height=144; alt="Measurement Issues in Aging and Physical Activity"; 
    src="Store/SmallImages/MeasurementIssuesAgingPA2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 9		
	href="Store/HK/MeasurementEvaluationHuman.html"; 
    height=144; alt="Measurement and Evaluation in Human Performance"; 
    src="Store/SmallImages/MeasurementEvaluationHuman2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);

	// 10		
	href="Store/HK/NormsforFitnessPerformanceandHealth.html"; 
    height=144; alt="Norms for Fitness, Performance, and Health"; 
    src="Store/SmallImages/NormsforFitnessPerformancea.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 11		
	href="Store/HK/TestingYourFlexibPoster.html"; 
    height=144; alt="Testing Your Flexibility Poster"; 
    src="Store/SmallImages/TestingYourFlexibilPoster2.gif"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);

	// 12		
	href="Store/HK/Flexitest.html"; 
    height=144; alt="Flexitest: An Innovative Flexibility Assessment Method"; 
    src="Store/SmallImages/Flexitest2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 13		
	href="Store/HK/AdvancedFitnessAssessExRx.html"; 
    height=144; alt="Advanced Fitness Assessment and Exercise Prescription"; 
    src="Store/SmallImages/AdvancedFitnessAssessExRx2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 14		
	href="Store/BodyTracker/BodyTracker.html"; 
    height=130; alt="Body Tracker CD-ROM Body Composition Assessment Software"; 
    src="Store/BodyTrackerImages/BodyTrackerSmallCD.jpg"; 
    width=130;
    images[images.length] = new image(src, href, height, width, alt);

	// 15		
	href="Store/HK/AppliedBodyCompositionAss.html"; 
    height=144; alt="Applied Body Composition Assessment"; 
    src="Store/SmallImages/AppliedBodyCompositionAsses.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 16		
	href="Store/HK/HumanBodyComposition.html"; 
    height=144; alt="Human Body Composition"; 
    src="Store/SmallImages/HumanBodyComposition2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 17		
	href="Store/HK/PhysicalActivityAssHealthR.html"; 
    height=144; alt="Physical Activity Assessments for Health-Related Research"; 
    src="Store/SmallImages/PhysicalActivityAssHealthRs.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 18		
	href="Store/HK/AppliedAnatomyBiomechanics2E.html"; 
    height=144; alt="Applied Anatomy and Biomechanics in Sport"; 
    src="Store/SmallImages/AppliedAnatomyBiomechanicsS.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 19		
	href="Store/HK/FunctionalTestingHumanPerformance.html"; 
    height=144; alt="Functional Testing in Human Performance"; 
    src="Store/SmallImages/FunctionalTestingHumanPerformance.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);
		
						
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "exercise") {

	// 0
	href="Store/HK/SculptingHerBodyPerfect.html"; 
    height=144; alt="Sculpting Her Body Perfect"; 
    src="Store/SmallImages/SculptingHerBodyPerfect2.jpg"; 
    width=113; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 1
	href="Store/HK/StrengthBallTraining.html"; 
    height=144; alt="Strength Ball Training"; 
    src="Store/SmallImages/StrengthBallTraining.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 2		
	href="Store/HK/StrengthTrainingPast50.html"; 
    height=144; alt="Strength Training Past 50"; 
    src="Store/SmallImages/StrengthTrainingPast502E2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/HighIntensityTraining.html"; 
    height=144; alt="High-Intensity Training"; 
    src="Store/SmallImages/HighIntensityTraining.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/StrengthTrainingForYoungAt.html"; 
    height=144; alt="Strength Training for Young Athletes"; 
    src="Store/SmallImages/StrengthTrainingYoungAth2nd.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 5
	href="Store/HK/PrinciplesPracticeResistanceTraining.html"; 
    height=144; alt="Principles and Practice of Resistance Training"; 
    src="Store/SmallImages/PrinciplesPracticeResistanc.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 6
	href="Store/HK/AthleticAbs.html"; 
    height=144; alt="Athletic Abs"; 
    src="Store/SmallImages/AthleticAbs2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 7		
	href="Store/HK/BackStability.html"; 
    height=144; alt="Back Stability"; 
    src="Store/SmallImages/BackStability2E.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

    	// 8
	href="Store/HK/StrongerArmsUpperBody.html"; 
    height=144; alt="Stronger Arms and Upper Body"; 
    src="Store/SmallImages/StrongerArmsUpperBody2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

    	// 9
	href="Store/HK/StrengthTrainingWomen.html"; 
    height=144; alt="Strength Training for Women"; 
    src="Store/SmallImages/StrengthTrainingWomenLI.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 10
	href="Store/HL/NSCAStrengthConditioningHS.html"; 
    height=144; alt="NSCAs Strength and Conditioning Manual for High School Coaches"; 
    src="Store/SmallHLBooks/StrengthConditioningHS.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);		

    	// 11
	href="Store/HK/Powerlifting.html"; 
    height=150; alt="Power-Lifting"; 
    src="Store/SmallImages/Powerlifting2.gif"; 
    width=116;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 12
	href="Store/HK/StrengthTrainingAnatPosters.html"; 
    height=144; alt="Strength Training Anatomy Posters"; 
    src="Store/SmallImages/LegsPoster.jpg"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 13
	href="Store/HK/StrengthBandTraining.html"; 
    height=144; alt="Strength Band Training"; 
    src="Store/SmallImages/StrengthBandTraining.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 14
	href="Store/HL/ACEGuideResTrainOlderAdult.html"; 
    height=144; alt="ACEs Guide to Resistance Training for Older Adults"; 
    src="Store/SmallHLBooks/ACEGuideResTrainOldAdultDVD.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 15
	href="Store/HK/ExplosiveLiftingVideo.html"; 
    height=144; alt="Explosive Lifting for Sports DVD"; 
    src="Store/SmallImages/ExplosiveLiftingDVD2.jpg"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);	
    	
	// 16		
	href="Store/HK/ExerTechnManResisTrain.html"; 
    height=144; alt="Exercise Technique Manual for Resistance Training"; 
    src="Store/SmallImages/ExerTechManualResistTrainNS.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

    	// 17
	href="Store/HK/EssentialsStrengthTrainCond.html"; 
    height=144; alt="Essentials of Strength Training and Conditioning"; 
    src="Store/SmallImages/EssentialsStrengthTrainNSCA.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 18
	href="Store/HK/WomensStrengthTrainingAnat.html"; 
    height=144; alt="Women's Strength Training Anatomy"; 
    src="Store/SmallImages/WomensStrengthTrainingAnat2.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 19
	href="Store/HK/JumpingIntoPlyometrics.html"; 
    height=144; alt="Jumping Into Plyometrics"; 
    src="Store/SmallImages/JumpingIntoPlyometrics2.gif"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 20
	href="Store/HK/Jumpmetrics.html"; 
    height=144; alt="Jumpmetrics"; 
    src="Store/SmallImages/Jumpmetrics.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 21
	href="Store/HK/WeightTrainingFundamentals.html"; 
    height=144; alt="Weight Training Fundamentals"; 
    src="Store/SmallImages/WeightTrainingFundamentals2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 22
	href="Store/HK/FitnessWeightTraining.html"; 
    height=144; alt="Fitness Weight Training"; 
    src="Store/SmallImages/FitnessWeightTraining.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 23
	href="Store/HK/BuildingStrengthStamina.html"; 
    height=144; alt="Building Strength and Stamina"; 
    src="Store/SmallImages/BuildingStrengthandStamina2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 24
	href="Store/HK/MensBodySculpting.html"; 
    height=144; alt="Mens Body Sculpting"; 
    src="Store/SmallImages/MensBodySculpting.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 25
	href="Store/Other/MuscularSystem.html"; 
    height=144; alt="Muscular System Poster"; 
    src="Store/OtherImages/MuscularSystem4.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 26
	href="Store/HL/CoachsStrengthTrainingHB.html"; 
    height=144; alt="The Coachs Strength Training Playbook"; 
    src="Store/SmallHLBooks/CoachsStrengthTrainPlaybook.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 27
	href="Store/HK/SeriousStrengthTraining.html"; 
    height=144; alt="Serious Strength Training"; 
    src="Store/SmallImages/SeriousStrengthTraining2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

   	// 28
	href="Store/HK/DesigningResistanceTrainPr.html"; 
    height=144; alt="Designing Resistance Training Programs"; 
    src="Store/SmallImages/DesigningResistanceTrainPr2.jpg"; 
    width=107;
    images[images.length] = new image(src, href, height, width, alt);	

   	// 29
	href="Store/HK/ScientificClinicApElastRes.html"; 
    height=144; alt="The Scientific and Clinical Application of Elastic Resistance"; 
    src="Store/SmallImages/ScientificClinAppElasticRes.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);	

   	// 30
	href="Store/HK/FacilitatedStretching.html"; 
    height=144; alt="Facilitated Stretching"; 
    src="Store/SmallImages/FacilitatedStretcing3E.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

   	// 31
	href="Store/HK/FullBodyFlexibility.html"; 
    height=144; alt="Full-Body Flexibility"; 
    src="Store/SmallImages/FullBodyFlexibility2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

   	// 32
	href="Store/HK/SportStretch.html"; 
    height=144; alt="Sport Stretch"; 
    src="Store/SmallImages/SportStretch2.gif"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 33
	href="Store/HK/KineticAnatomy.html"; 
    height=144; alt="Kinetic Anatomy Textbook & CD-ROM"; 
    src="Store/SmallImages/KineticAnatomy2.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);

	// 34		
	href="Store/HL/GroupStrengthTraining.html"; 
    height=144; alt="ACEs Guide to Group Strength Training A Guide for Exercise Professionals"; 
    src="Store/SmallHLBooks/ACEGuideGroupStrengthTrain.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 35		
	href="Store/HK/EffectiveStrengthTraining.html"; 
    height=144; alt="Effective Strength Training"; 
    src="Store/SmallImages/EffectiveStrengthTraining.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 36		
	href="Store/HK/MuscleMechanics.html"; 
    height=144; alt="Muscle Mechanics"; 
    src="Store/SmallImages/MuscleMechanics2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 37		
	href="Store/HK/ResistanceTrainingHealthRe.html"; 
    height=144; alt="Resistance Training for Health and Rehabilitation"; 
    src="Store/SmallImages/ResistanceTrainingHealthReh.jpg"; 
    width=90;
    images[images.length] = new image(src, href, height, width, alt);

	// 38		
	href="Store/HK/StretchingBasicsPoster.html"; 
    height=144; alt="Stretching Basics Poster"; 
    src="Store/SmallImages/StretchingBasicsPoster2.gif"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);

	// 39		
	href="Store/HK/StrongerAbsBack.html"; 
    height=144; alt="Stronger Abs and Back"; 
    src="Store/SmallImages/StrongerAbsBack.gif"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 40		
	href="Store/HK/OptimizingStrengthTraining.html"; 
    height=144; alt="Optimizing Strength Training"; 
    src="Store/SmallImages/OptimizingStrengthTraining2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 41		
	href="Store/HK/StrongerLegsLowerBody.html"; 
    height=144; alt="Stronger Legs and Lower Body"; 
    src="Store/SmallImages/StrongerLegsLowerBody2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 42		
	href="Store/HK/ASTDVD.html"; 
    height=144; alt="Advanced Strength Training DVD"; 
    src="Store/SmallImages/AdvancedStrengthTraining2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 43		
	href="Store/HL/StretchingUnderstandingBasicsDVD.html"; 
    height=144; alt="Stretching: Understanding the Basics"; 
    src="Store/SmallHLBooks/StretchingUnderstandingBasi.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);

	// 44		
	href="Store/HL/DynamicFlexibilityTrainAth.html"; 
    height=144; alt="Dynamic Flexibility Training for Athletes"; 
    src="Store/SmallHLBooks/DynamicFlexTrainingAthleteD.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);

	// 45		
	href="Store/HK/MorningStrengthWorkouts.html"; 
    height=144; alt="Morning Strength Workouts"; 
    src="Store/SmallImages/MorningStrengthWorkouts.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
		
    	// 46		
	href="Store/HK/EncyclopediaMuscleStrength.html"; 
    height=144; alt="Encyclopedia of Muscle and Strength"; 
    src="Store/SmallImages/EncyclopediaMuscleStrength.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 47		
	href="Store/HK/EssentialsInteractiveFunctionalAnatomy.html"; 
    height=125; alt="Essentials of Interactive Functional Anatomy"; 
    src="Store/SmallImages/EssentialsInteractiveFuncti.jpg"; 
    width=125;
    images[images.length] = new image(src, href, height, width, alt);
										
	// 48		
	href="Store/HK/SciencePracticeStrengthTraining.html"; 
    height=144; alt="Essentials of Interactive Functional Anatomy"; 
    src="Store/SmallImages/SciencePracticeStrengthTrai.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 49		
	href="Store/HK/OptimalMuscleTraining.html"; 
    height=144; alt="Optimal Muscle Training (Book &amp; DVD)"; 
    src="Store/SmallImages/OptimalMuscleTraining.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 50		
	href="Store/HK/PowerSportsPerfDVD.html"; 
    height=144; alt="Power for Sports Performance DVD"; 
    src="Store/SmallImages/PowerForSportsPerformance.gif"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);

	// 51
	href="Store/HK/SpeedSportPerformDVD.html"; 
    height=144; alt="Speed for Sports Performance DVD"; 
    src="Store/SmallImages/SpeedForSportsPerformanceDV.gif"; 
    width=103; 
    images[images.length] = new image(src, href, height, width, alt);

	// 52		
	href="Store/HK/FlexibilitySportsPerfDVD.html"; 
    height=144; alt="Flexibility for Sports Performance DVD"; 
    src="Store/SmallImages/FlexibilityForSportsPerform.gif"; 
    width=103;
    images[images.length] = new image(src, href, height, width, alt);

	// 53
	href="Store/HK/StrengthSportsPerfDVD.html"; 
    height=144; alt="Strength for Sports Performance DVD"; 
    src="Store/SmallImages/StrengthForSportsPerformanc.gif"; 
    width=103; 
    images[images.length] = new image(src, href, height, width, alt);

	// 54
	href="Store/HK/ResistanceTrainingInst.html"; 
    height=144; alt="Resistance Training Instruction"; 
    src="Store/SmallImages/ResistanceTrainingInst.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);

	// 55		
	href="Store/HK/StrengthTraining.html"; 
    height=144; alt="Strength Training"; 
    src="Store/SmallImages/StrengthTraining.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 56
	href="Store/HL/StrengthTrainWorkoutEncyclopBook.html"; 
    height=144; alt="The Strength Training Workout Encyclopedia"; 
    src="Store/SmallHLBooks/StrenthTrainWorkoutEncyclop.jpg"; 
    width=109; 
    images[images.length] = new image(src, href, height, width, alt);

	// 57		
	href="Store/HK/PeriodizationTheoryMethodologyTraining.html"; 
    height=144; alt="Periodization: Theory and Methodology of Training"; 
    src="Store/SmallImages/Periodization.jpg"; 
    width=108;
    images[images.length] = new image(src, href, height, width, alt);

	// 58
	href="Store/HK/TaperingPeakingOptimalPerformance.html"; 
    height=144; alt="Tapering and Peaking for Optimal Performance"; 
    src="Store/SmallImages/TaperingAndPeaking.jpg"; 
    width=112; 
    images[images.length] = new image(src, href, height, width, alt);

	// 59
	href="Store/HK/YouthStrengthTraining.html"; 
    height=144; alt="Youth Strength Training"; 
    src="Store/SmallImages/YouthStrengthTraining2.jpg"; 
    width=112; 
    images[images.length] = new image(src, href, height, width, alt);

								
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "free") {

    	// 0
    	href="Store/HK/CompleteBookThrows.html";
    height=144; alt="Complete Book of Throws"; 
    src="Store/SmallImages/CompleteBookThrows.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/AthleticStrengthWomen.html"; 
    height=144; alt="Athletic Strength for Women"; 
    src="Store/SmallImages/AthleticStrengthWomen.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2
	href="Store/HK/ClosedKineticChainExercise.html"; 
    height=144; alt="Closed Kinetic Chain Exercise"; 
    src="Store/SmallImages/ClosedKineticChainExercise.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/CompleteConditioningBasebl.html"; 
    height=144; alt="Complete Conditioning for Baseball"; 
    src="Store/SmallImages/CompleteConditioningBasebal.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/SportsPower.html"; 
    height=144; alt="Sports Power"; 
    src="Store/SmallImages/SportsPower.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/Other/ACSMGuidelinesExTestingRx.html"; 
    height=144; alt="ACSMs Guidelines for Exercise Testing and Prescription"; 
    src="Store/OtherImages/ACSMGuidelinesExTestRx2.gif"; 
    width=91;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 6
	href="Store/HK/Fallproof.html"; 
    height=144; alt="Fall Proof!"; 
    src="Store/SmallImages/Fallproof2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 7		
	href="Store/HK/ACSMHealthFitnessFacility.html"; 
    height=144; alt="ACSMs Health / Fitness Facility Standards and Guidelines"; 
    src="Store/SmallImages/ACSMHealthFitnessFacility2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	

    	// 8
    	href="Store/HK/FacilitatedStretching.html";
    height=144; alt="Facilitated Stretching"; 
    src="Store/SmallImages/FacilitatedStretcing3E.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 9
	href="Store/HK/AthleticBodyBalance.html"; 
    height=144; alt="Athletic Body in Balance"; 
    src="Store/SmallImages/AthleticBodyBalance2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	
			
    	// 10
	href="Store/Other/TrainerClipArt.html"; 
    height=126; alt="Trainer ClipArt"; 
    src="Store/OtherImages/TrainingClipsCover2.jpg"; 
    width=120;
    images[images.length] = new image(src, href, height, width, alt);

	// 11		
	href="Store/HK/CompleteBookPersonalTrain.html"; 
    height=144; alt="Complete Book of Personal Training"; 
    src="Store/SmallImages/CompleteBookPersonalTrainin.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 12		
	href="Store/HK/FunctionalTrainingSports.html"; 
    height=144; alt="Functional Training for Sports"; 
    src="Store/SmallImages/FunctionalTrainingSports2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 13	
	href="Store/HK/ExerciseFrailElders.html"; 
    height=144; alt="Exercise for Frail Elders"; 
    src="Store/SmallImages/ExerciseFrailElders2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	

	// 14		
	href="Store/HK/ExerciseInducedAsthma.html"; 
    height=144; alt="Exercise-Induced Asthma"; 
    src="Store/SmallImages/ExerciseInducedAsthma.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 15		
	href="Store/HK/ExerciseCancerRecovery.html"; 
    height=144; alt="Exercise and Cancer Recovery"; 
    src="Store/SmallImages/ExerciseCancerRecovery2.jpg"; 
    width=107;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 16		
	href="Store/HK/LowBackDisorders.html"; 
    height=144; alt="Low Back Disorders"; 
    src="Store/SmallImages/LowBackDisorders2E2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 17		
	href="Store/HK/ConditioningDance.html"; 
    height=144; alt="Conditioning for Dance"; 
    src="Store/SmallImages/ConditioningDance.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 18		
	href="Store/HK/CreativePlayActivities.html"; 
    height=150; alt="Creative Play Activities for Children with Disabilities"; 
    src="Store/SmallImages/CreativePlayActivities2.gif"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 19		
	href="Store/HK/PerformanceMassage.html"; 
    height=144; alt="Performance Massage"; 
    src="Store/SmallImages/PerformanceMassage2.gif"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 20
	href="Store/HK/CompleteConditioningBasketball.html"; 
    height=144; alt="Complete Conditioning for Basketball"; 
    src="Store/SmallImages/CompleteCondBasketball2.jpg"; 
    width=101; 
    images[images.length] = new image(src, href, height, width, alt);
						
	// 21		
	href="Store/HK/SportFirstAid.html"; 
    height=144; alt="Sport First Aid"; 
    src="Store/SmallImages/SportFirstAid.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 22		
	href="Store/HK/CompleteConditioningRugby.html"; 
    height=144; alt="Complete Conditioning for Rugby"; 
    src="Store/SmallImages/CompleteConditioningRugby.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 23		
	href="Store/HK/CompleteConditioningSoccer.html"; 
    height=144; alt="Complete Conditioning for Soccer"; 
    src="Store/SmallImages/CompleteConditioningSoccer.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 24		
	href="Store/HK/CompleteConditioningVolley.html"; 
    height=144; alt="Complete Conditioning for Volleyball"; 
    src="Store/SmallImages/CompleteConditioningVolleyb.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 25		
	href="Store/HK/CompleteConditMartialArts.html"; 
    height=144; alt="Complete Conditioning for Martial Arts"; 
    src="Store/SmallImages/CompleteConditMartialArts2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 26		
	href="Store/HK/CompleteConditioningTennis.html"; 
    height=144; alt="Complete Conditioning for Tennis"; 
    src="Store/SmallImages/CompleteCondTennis2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 27
	href="Store\HK\StretchToWin.html"; 
    height=144; alt="Stretch to Win"; 
    src="Store/SmallImages/StretchtoWin2.jpg"; 
    width=100; 
    images[images.length] = new image(src, href, height, width, alt);
						
	// 28		
	href="Store/HK/CompleteConditioningFootbl.html"; 
    height=144; alt="Complete Conditioning for Football"; 
    src="Store/SmallImages/CompleteConditioningFootbal.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 29		
	href="Store/HK/RowingFaster.html"; 
    height=144; alt="Rowing Faster"; 
    src="Store/SmallImages/RowingFaster.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 30		
	href="Store/HK/FitforDuty.html"; 
    height=144; alt="Fit for Duty: An Officers Guide to Total Fitness"; 
    src="Store/SmallImages/FitForDuty2.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 31		
	href="Store/HK/GoldMedalTrackFieldDVD.html"; 
    height=144; alt="Gold Medal Track and Field DVD"; 
    src="Store/SmallImages/GoldMedalTrackFieldDVD2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 32		
	href="Store/HK/MotherwellMaternityFitnessPlan.html"; 
    height=144; alt="Motherwell Maternity Fitness Plan"; 
    src="Store/SmallImages/MotherwellMaternityFitnessP.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 33		
	href="Store/HL/ACEGuidePreNatalFitness.html"; 
    height=144; alt="ACEs Guide to Pre-Natal Fitness"; 
    src="Store/SmallHLBooks/ACEGuidePreNatalFitnessDVD.jpg"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 34		
	href="Store/HK/PurposefulPlay.html"; 
    height=144; alt="Purposeful Play: Early Childhood Movement Activities on a Budget"; 
    src="Store/SmallImages/PurposefulPlay.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 35		
	href="Store/HK/AthleticWomensSurvival.html"; 
    height=150; alt="The Athletic Womans Survival Guide"; 
    src="Store/SmallImages/AthleticWomensSurvival2.gif"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 36		
	href="Store/HK/FullBodyFlexibility.html"; 
    height=144; alt="Full-Body Flexibility"; 
    src="Store/SmallImages/FullBodyFlexibility2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 37		
	href="Store/HK/PerforminginExtremeEnv.html"; 
    height=120; alt="Performing in Extreme Environments"; 
    src="Store/SmallImages/PerformingInExtremeEnv2.gif"; 
    width=79;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 38		
	href="Store/HK/BethShawsYogaFit.html"; 
    height=144; alt="Beth Shaws YogaFit"; 
    src="Store/SmallImages/BethShawsYogaFit2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 39
	href="Store/HL/ChiGungForEnerChiDVD.html"; 
    height=144; alt="Chi Gung for Ener-Chi DVD"; 
    src="Store/SmallHLBooks/ChiGungEnerChiDVD2.jpg"; 
    width=99; 
    images[images.length] = new image(src, href, height, width, alt);
						
	// 40		
	href="Store/HK/StretchingHealthBackPoster.html"; 
    height=144; alt="Stretching for a Healthy Back Poster"; 
    src="Store/SmallImages/StretchingHealthBackPoster2.gif"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 41		
	href="Store/HK/SwimmingFastest.html"; 
    height=144; alt="Swimming Fastest"; 
    src="Store/SmallImages/SwimmingFastest.jpg"; 
    width=116;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 42		
	href="Store/HK/WomensFitnessProgramDev.html"; 
    height=144; alt="Women's Fitness Program Development"; 
    src="Store/SmallImages/WomensFitnessProgramDevelop.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);		
					
	// 43		
	href="Store/HL/FlowYogaSmartSequencing.html"; 
    height=144; alt="Flow Yoga Smart Sequencing DVD"; 
    src="Store/SmallHLBooks/FlowYogaSmartSequencingDVD.jpg"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);	
						
	// 44		
	href="Store/HK/BackStability.html"; 
    height=144; alt="Back Stability"; 
    src="Store/SmallImages/BackStability2E.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 45
	href="Store/HK/SportsSpeed.html"; 
    height=144; alt="Sports Speed"; 
    src="Store/SmallImages/SportsSpeed2.jpg"; 
    width=101; 
    images[images.length] = new image(src, href, height, width, alt);

	// 46
	href="Store/HK/InjuryPreventionRehabAOA.html"; 
    height=144; alt="Injury Prevention and Rehabilition for Active Older Adults"; 
    src="Store/SmallImages/InjuryPreventionRehabAOA2.jpg"; 
    width=110; 
    images[images.length] = new image(src, href, height, width, alt);

	// 47
	href="Store/HK/NoStandingAroundMyGym.html"; 
    height=144; alt="No Standing Around in My Gym"; 
    src="Store/SmallImages/NoStandingAroundMyGym2.gif"; 
    width=112; 
    images[images.length] = new image(src, href, height, width, alt);

	// 48
	href="Store/HK/WomensHealthandFitnessGuide.html"; 
    height=144; alt="Women's Health and Fitness Guide"; 
    src="Store/SmallImages/WomensHealthandFitnessGuide.jpg"; 
    width=111; 
    images[images.length] = new image(src, href, height, width, alt);

	// 49
	href="Store/HK/UnderstandPreventNonContACLInjuries.html"; 
    height=144; alt="Understanding and Preventing Noncontact ACL Injuries"; 
    src="Store/SmallImages/UnderstandingPreventingACL2.jpg"; 
    width=96; 
    images[images.length] = new image(src, href, height, width, alt);

	// 50
	href="Store/HK/SpeedSportPerformDVD.html"; 
    height=144; alt="Speed for Sports Performance DVD"; 
    src="Store/SmallImages/SpeedForSportsPerformanceDV.gif"; 
    width=103; 
    images[images.length] = new image(src, href, height, width, alt);

	// 51		
	href="Store/HK/ExerTechnManResisTrain.html"; 
    height=144; alt="Exercise Technique Manual for Resistance Training"; 
    src="Store/SmallImages/ExerTechManualResistTrainNS.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 52		
	href="Store/HK/PhysicalEducationMethodsElementTeach.html"; 
    height=144; alt="Physical Education Methods for Elementary Teachers"; 
    src="Store/SmallImages/PhysicalEducationMthodsElem.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 53		
	href="Store/HK/EducatingForHealth.html"; 
    height=144; alt="Educating for Health"; 
    src="Store/SmallImages/EducatingForHealth2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 54		
	href="Store/HK/TeachingChildrenPhysEd.html"; 
    height=144; alt="Teaching Children Physical Education"; 
    src="Store/SmallImages/TeachingChildrenPhysEd3E2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 55	
	href="Store/HK/SportsInjuriesGuidbook.html"; 
    height=144; alt="Sports Injuries Guidebook"; 
    src="Store/SmallImages/SportsInjuriesGuidebook2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 56		
	href="Store/HK/BiomechanicsMusculoskeleta.html"; 
    height=144; alt="Biomechanics of Musculoskeletal Injury"; 
    src="Store/SmallImages/BiomechanicsMusculoskeletal.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);

	// 57		
	href="Store/HK/CompleteConditioningIceHoc.html"; 
    height=144; alt="Complete Conditioning for Hockey"; 
    src="Store/SmallImages/CompleteConditioningIceHock.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 58		
	href="Store/HK/MorningYogaWorkouts.html"; 
    height=144; alt="Morning Yoga Workouts"; 
    src="Store/SmallImages/MorningYogaWorkouts.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 59	
	href="Store/HK/AbleBodiesBalance.html"; 
    height=144; alt="ABLE Bodies Balance Training"; 
    src="Store/SmallImages/AbleBodiesBalance2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 60		
	href="Store/HK/OrganizingSuccessTourney.html"; 
    height=144; alt="Organizing Successful Tournaments"; 
    src="Store/SmallImages/OrganizingSuccessTourney2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 61		
	href="Store/HK/EffectiveFunctionalProgressionsSportRehab.html"; 
    height=144; alt="Effective Functional Progressions in Sport Rehabilitation"; 
    src="Store/SmallImages/EffectiveFunctionalProgressionsSportRehab.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);
		
								
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "fatloss") {

	// 0
	href="Store/HK/HealthFitnessHandbook.html"; 
    height=144; alt="The Health Fitness Handbook"; 
    src="Store/SmallImages/HealthFitnessHandbook2.gif"; 
    width=96; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 1
	href="Store/HK/Obesity.html"; 
    height=144; alt="Obesity: Etiology, Assessment, Treatment, and Prevention"; 
    src="Store/SmallImages/Obesity.jpg"; 
    width=107;
    images[images.length] = new image(src, href, height, width, alt);

	// 2		
	href="Store/HK/PhysicalActivityObesity.html"; 
    height=144; alt="Physical Activity and Obesity"; 
    src="Store/SmallImages/PhysicalActivityObesity2.jpg"; 
    width=98;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/ActionPlanDiabetes.html"; 
    height=144; alt="ACSM Action Plan for Diabetes"; 
    src="Store/SmallImages/ActionPlanDiabetes.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 4		
	href="Store/HK/ActionPlanHighBloodPressure.html"; 
    height=144; alt="Action Plan for High Blood Pressure"; 
    src="Store/SmallImages/ActionHighBloodPressure2.gif"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 5		
	href="Store/HK/ActionPlanHighCholesterol.html"; 
    height=144; alt="Action Plan for High Cholesterol"; 
    src="Store/SmallImages/ActionPlanHighCholesterol2.gif"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 6		
	href="Store/HK/ActiveStartforHealthyKids.html"; 
    height=144; alt="Active Start for Healthy Kids"; 
    src="Store/SmallImages/ActiveStartHealthyKids2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 7
	href="Store/HK/EatingOnTheRun.html"; 
    height=144; alt="Eating on the Run"; 
    src="Store/SmallImages/EatingRun.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 8		
	href="Store/HL/ACELifestyleWeightManual.html"; 
    height=144; alt="ACE Lifestyle &amp; Weight Management Consultant Manual"; 
    src="Store/SmallHLBooks/ACELifestyleWeightManual.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 9
	href="Store/HK/AthletesGuideMakingWeight.html"; 
    height=144; alt="The Athlete's Guide to Making Weight"; 
    src="Store/SmallImages/AthletesGuideMakingWeight2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);	

	// 10		
	href="Store/HK/PhysicalActivityInterventionsChildren.html"; 
    height=144; alt="Physical Activity Interventions in Children and Adolescents"; 
    src="Store/SmallImages/PhysicalActInterventionsChi.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 11		
	href="Store/HK/PhysicalActivityNutritionHealht.html"; 
    height=144; alt="Physical Activity and Nutrition for Health"; 
    src="Store/SmallImages/PhysicalActivityNutritionHe.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

						
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "psychology") {
    	// 0
    	href="Store/HK/SuccessfulFitnessMotivatSt.html";
    height=144; alt="Successful Fitness Motivation Strategies"; 
    src="Store/SmallImages/SuccessfulFitnessMotivation.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 1
	href="Store/HK/MentalAthlete.html"; 
    height=144; alt="The Mental Athlete"; 
    src="Store/SmallImages/MentalAthlete.jpg"; 
    width=96; 
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 2		
	href="Store/HK/AttentionAndMotorSkillLearning.html"; 
    height=144; alt="Attention and Motor Skill Learning"; 
    src="Store/SmallImages/AttentionandMotorSkillLearn.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 3		
	href="Store/HK/PhysicalActivitiesImprov.html"; 
    height=144; alt="Physical Activities for Improving Childrens Learning and Behavior"; 
    src="Store/SmallImages/PhysicalActivitiesImprov3.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 4		
	href="Store/HK/RecoveryStressQuestionAthl.html"; 
    height=144; alt="Recovery-Stress Questionnaire for Athletes"; 
    src="Store/SmallImages/RecoveryStressQuestionnaire.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 5		
	href="Store/HK/SuccessfulCoaching.html"; 
    height=144; alt="Successful Coaching"; 
    src="Store/SmallImages/SuccessfulCoaching.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);	

	// 6		
	href="Store/HK/PsychologyicalDynamicsSportEx.html"; 
    height=144; alt="The Sport Psych Handbook"; 
    src="Store/SmallImages/PsychologicalDynamicsSportE.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);		

	// 7		
	href="Store/HK/LifestyleFitnessCoaching.html"; 
    height=144; alt="Lifestyle Fitness Coaching and CD-ROM"; 
    src="Store/SmallImages/LifestyleFitnessCoaching2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);		

	// 8		
	href="Store/HL/CoachingPsychForHFMHProfDVD.html"; 
    height=144; alt="Coaching Psychology for Health, Fitness, and Mental Health Professionals DVD"; 
    src="Store/SmallHLBooks/CoachingHFMHProfDVD2.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);	

	// 9		
	href="Store/HK/AdvancesSportPsychology.html"; 
    height=144; alt="Advances in Sport Psychology"; 
    src="Store/SmallImages/AdvancesSportPsych3E2.jpg"; 
    width=109;
    images[images.length] = new image(src, href, height, width, alt);	

	// 10		
	href="Store/HK/ExpertPerformanceSports.html"; 
    height=144; alt="Expert Performance in Sports"; 
    src="Store/SmallImages/ExpertPerformanceSports.jpg"; 
    width=90;
    images[images.length] = new image(src, href, height, width, alt);		

	// 11		
	href="Store/HK/AdvancesSportPsychology.html"; 
    height=144; alt="Advances in Motivation in Sport and Exercise"; 
    src="Store/SmallImages/AdvancesSportsPsychology.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);		

	// 12		
	href="Store/HK/SportPsychologyPractice.html"; 
    height=144; alt="Sport Psychology in Practice"; 
    src="Store/SmallImages/SportPsychologyPractice2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);		

	// 13		
	href="Store/HK/MasteringYourInnerGame.html"; 
    height=144; alt="Mastering Your Inner Game"; 
    src="Store/SmallImages/MasteringYourInnerGame.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);		

	// 14		
	href="Store/HK/FoundationsSportExerPychol.html"; 
    height=144; alt="Foundations of Sport and Exercise Psychology"; 
    src="Store/SmallImages/FoundationsSportExPsycholog.jpg"; 
    width=113;
    images[images.length] = new image(src, href, height, width, alt);		

	// 15		
	href="Store/HK/EnhancingRecovery.html"; 
    height=144; alt="Enhancing Recovery"; 
    src="Store/SmallImages/EnhancingRecovery.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);		

	// 18		
	href="Store/HL/IntroCoachingFitnessProfDVD.html"; 
    height=144; alt="Introduction to Coaching for Fitness Professionals DVD"; 
    src="Store/SmallHLBooks/IntroCoachingFitnessProfDVD.jpg"; 
    width=99;
    images[images.length] = new image(src, href, height, width, alt);

	// 17		
	href="Store/HK/OvertrainingSport.html"; 
    height=144; alt="Overtraining in Sport"; 
    src="Store/SmallImages/OvertrainingSport.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);	

	// 18		
	href="Store/HK/MotorLearningPerformance.html"; 
    height=144; alt="Motor Learning and Performance"; 
    src="Store/SmallImages/MotorLearningPerformance.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);

	// 19		
	href="Store/HK/CreativeCoaching.html"; 
    height=144; alt="Creative Coaching"; 
    src="Store/SmallImages/CreativeCoaching2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 20		
	href="Store/HK/EmbracingYourPotential.html"; 
    height=144; alt="Embracing Your Potential"; 
    src="Store/SmallImages/EmbracingYourPotential2.gif"; 
    width=97;
    images[images.length] = new image(src, href, height, width, alt);

	// 21		
	href="Store/HK/InPursuitOfExcellence.html"; 
    height=144; alt="In Pursuit of Excellence How to Win in Sport and Life Through Mental Training"; 
    src="Store/SmallImages/InPursuitExcellence2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 22		
	href="Store/HK/SportsHypnosis.html"; 
    height=150; alt="Sport Hypnosis"; 
    src="Store/SmallImages/SportsHypnosis2.gif"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 23		
	href="Store/HK/PositiveBehaviorManagementPA.html"; 
    height=150; alt="Positive Behavior Management in Physical Activity Settings"; 
    src="Store/SmallImages/PositiveBehaviorManagementP2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 24		
	href="Store/HK/MotorControlandLearning.html"; 
    height=144; alt="Motor Control and Learning"; 
    src="Store/SmallImages/MotorControlandLearning2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 25		
	href="Store/HK/ApplyingSportPsychology.html"; 
    height=144; alt="Applying Sport Psychology"; 
    src="Store/SmallImages/ApplyingSportPsychology2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 26		
	href="Store/HK/ClinicalSportPsychology.html"; 
    height=144; alt="Clinical Sport Psychology"; 
    src="Store/SmallImages/ClinicalSportPsychology2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);

	// 27		
	href="Store/HK/ImageryInSports.html"; 
    height=144; alt="Imagery In Sport"; 
    src="Store/SmallImages/ImageryInSports2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);

	// 28		
	href="Store/HK/SportPsychHandbook.html"; 
    height=144; alt="Psychological Dynamics of Sport and Exercise"; 
    src="Store/SmallImages/SportPsychHandbook2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 29		
	href="Store/HK/SportPsychCoaches.html"; 
    height=144; alt="Sport Psychology for Coaches"; 
    src="Store/SmallImages/SportPsychCoaches2.jpg"; 
    width=111;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 30		
	href="Store/HK/MotivatingPeoplePhysActive.html"; 
    height=144; alt="Motivating People to Be Physically Active"; 
    src="Store/SmallImages/MotivatingPeoplePhysActive.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);

	// 31		
	href="Store/HK/PsychologyPhysicalEducators.html"; 
    height=144; alt="Psychology for Physical Educators"; 
    src="Store/SmallImages/PsychologyPhysicalEducators.jpg"; 
    width=110;
    images[images.length] = new image(src, href, height, width, alt);

	// 32		
	href="Store/HK/DevianceSocialControlSport.html"; 
    height=144; alt="Deviance and Social Control in Sport"; 
    src="Store/SmallImages/DevianceSocialControlSport2.jpg"; 
    width=96;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 33		
	href="Store/HL/101TipsMotivateClients.html"; 
    height=144; alt="101 Tips to Motivate Your Clients and Increase Retention"; 
    src="Store/SmallHLBooks/101TipsMotivateClientsIncre.gif"; 
    width=94;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 34		
	href="Store/HK/FundSportExercPsychology.html"; 
    height=144; alt="Fundamentals of Sport and Exercise Psychology"; 
    src="Store/SmallImages/FundamentalsSportExerPsych2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
	
	// 35		
	href="Store/HK/EssentialReadingsSportExercisePsychology.html"; 
    height=144; alt="Essential Readings in Sport and Exercise Psychology"; 
    src="Store/SmallImages/EssentialReadingsSportExercisePsychology.jpg"; 
    width=112;
    images[images.length] = new image(src, href, height, width, alt);
			
							
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 

  if(category == "steroids") {
    	// 0
    	href="Store/HL/AnabolicSteroidUse.html";
    height=144; alt="Anabolic Steroid Use DVD"; 
    src="Store/SmallHLBooks/AnabolicSteroidUse2.jpg"; 
    width=101;
    images[images.length] = new image(src, href, height, width, alt);
			
    	// 1
	href="Store/HK/AnabolicSteroidsSportExer.html"; 
    height=150; alt="Anabolic Steroids Sport and Exercise"; 
    src="Store/SmallImages/AnabolicSteroidsSportExer2.gif"; 
    width=100;
    images[images.length] = new image(src, href, height, width, alt);

	// 2		
	href="Store/HK/PerformanceEnhancingSubst.html"; 
    height=144; alt="Performance-Enhancing Substances in Sport and Exercise"; 
    src="Store/SmallImages/PerformanceEnhancingSubstan.jpg"; 
    width=106;
    images[images.length] = new image(src, href, height, width, alt);	

	// 3		
	href="Store/HK/SportExercisePharmacology.html"; 
    height=144; alt="Sport and Exercise Pharmacology"; 
    src="Store/SmallImages/SportExercisePharmacology.jpg"; 
    width=93;
    images[images.length] = new image(src, href, height, width, alt);	
						
// NOTE: add your other images for the category similarly	
// images[images.length] = new image(src, url, height, width, alt);	  
  } 
 
  else 
  if(category == "index" || "store" || "journal" || "aerobics" || "beginning" || "bodybuilding" || "calctest" || "exercise" || "free" || "fatloss" || "nutrition" || "psychology" || "steroids") {
  }  
  else {
  	 alert("ERROR - loadCategoryImages(). unknown category:" + category);
  }
  // SELECT FAVORITES
  selectFavorites(category);
}