if (document.images)
			{
				HomeOn = new Image(); HomeOn.src = "images/houseover2.jpg"; 
				HomeOff = new Image(); HomeOff.src = "images/houseup2.jpg";
				
				BioOn = new Image(); BioOn.src = "images/bioover2.jpg"; 
				BioOff = new Image(); BioOff.src = "images/bioup2.jpg";
				
				ContactOn = new Image(); ContactOn.src = "images/contactover2.jpg"; 
				ContactOff = new Image(); ContactOff.src = "images/contactup2.jpg";
				
				FeesOn = new Image(); FeesOn.src = "images/feesover2.jpg"; 
				FeesOff = new Image(); FeesOff.src = "images/feesup2.jpg";
				
				TestimonialsOn = new Image(); TestimonialsOn.src = "images/testimonialsover2.jpg"; 
				TestimonialsOff = new Image(); TestimonialsOff.src = "images/testimonialsup2.jpg";
				
				CoachingOn = new Image(); CoachingOn.src = "images/coachingover2.jpg"; 
				CoachingOff = new Image(); CoachingOff.src = "images/coachingup2.jpg";
				
				ResourcesOn = new Image(); ResourcesOn.src = "images/resourcesover2.jpg"; 
				ResourcesOff = new Image(); ResourcesOff.src = "images/resourcesup2.jpg";
				
				
				
				
				
				
				

			}	
			
		function rollOn (imgName) 
			{
				if (document.images) 
				{
				document[imgName].src = eval(imgName + "On.src");
				}
			}
		
		function rollOff (imgName) 
			{
				if (document.images) 
				{
				document[imgName].src = eval(imgName + "Off.src");
				}
			}
		
function txtValidate(o)
	{
	var str = o.value
	var newstr = str.replace (/\s/g, "")
	var msg = 'Please fill in all required fields (Bold Labels)'
	
	if (newstr == "")
				{
				alert(msg);
				return false;
				}
			
		else
			{
			o.value = newstr
			return true;
			}
	
	
	}
	function onValidate()
	{
	
		if (txtValidate(frmEntry.fullname) 		
		&& txtValidate(frmEntry.email)
		&& txtValidate(frmEntry.comments))	
		{return true;}else{return false;}		
		
	}