	  if (document.images)
   {
     home3= new Image();
     home3.src="images/home3.jpg";  

     home4= new Image();
     home4.src="images/home4.jpg";  

     home5= new Image();
     home5.src="images/home5.jpg";  

     home6= new Image();
     home6.src="images/home6.jpg";  

     home7= new Image();
     home7.src="images/home7.jpg"; 
	 
     btn_home3= new Image();
     btn_home3.src="images/btn_home3.jpg";  
     btn_home3_on= new Image();
     btn_home3_on.src="images/btn_home3_on.jpg";  

     btn_home4= new Image();
     btn_home4.src="images/btn_home4.jpg";  
     btn_home4_on= new Image();
     btn_home4_on.src="images/btn_home4_on.jpg";  

     btn_home5= new Image();
     btn_home5.src="images/btn_home5.jpg";  
     btn_home5_on= new Image();
     btn_home5_on.src="images/btn_home5_on.jpg";  

     btn_home6= new Image();
     btn_home6.src="images/btn_home6.jpg";  
     btn_home6_on= new Image();
     btn_home6_on.src="images/btn_home6_on.jpg";  

     btn_home7= new Image();
     btn_home7.src="images/btn_home7.jpg";  
     btn_home7_on= new Image();
     btn_home7_on.src="images/btn_home7_on.jpg";  
   }
   function flipall(){
  /* 	flip('btn_home3','btn_home3');
	flip('btn_home4','btn_home4');
	flip('btn_home5','btn_home5');
	flip('btn_home5','btn_home6');
	flip('btn_home5','btn_home5');*/
   }
   var imgon='btn_home3';
	function flip(imgsrc,imgflip){
		if (imgsrc!='home_img'){
			eval('document.images.'+imgon+'.src='+imgon+'.src');
			imgon=imgsrc;
		};		
		eval('document.images.'+imgsrc+'.src='+imgflip+'.src');

	
	}
	function CheckMe(theForm){
	var checkMail=theForm.elements["email"].value;
	var returnVal=1;

	if (theForm.elements["FirstName"].value=="") {
	document.getElementById('fname').innerHTML="*";
	returnVal=0;	
	}else {document.getElementById('fname').innerHTML="\&nbsp \&nbsp";};
	
	if (theForm.elements["LastName"].value=="") {
	document.getElementById('lname').innerHTML="*";
	returnVal=0;
	}else {document.getElementById('lname').innerHTML="\&nbsp \&nbsp";};
	
	if (theForm.elements["comments"].value=="") {
	document.getElementById('ccomments').innerHTML="*";
	returnVal=0;
	}else {document.getElementById('ccomments').innerHTML="\&nbsp \&nbsp";};
	//         
	if ((checkMail=="")||(checkMail.indexOf("@")>=checkMail.length-2)||(checkMail.indexOf("@")<=0)){
	document.getElementById('cemail').innerHTML="*";
	returnVal=0;
	}else {document.getElementById('cemail').innerHTML="\&nbsp \&nbsp";};
	
	if((checkMail.indexOf(".")>=checkMail.length-2)||(checkMail.indexOf(".")<=0)){
	document.getElementById('cemail').innerHTML="*";
	returnVal=0;	
	}else {document.getElementById('cemail').innerHTML="\&nbsp";};
	
	if(returnVal==0) {
		document.getElementById('errorMsg').innerHTML="* Please check your information.";
		return false;
	}
	else{
		return true;
	};

	}