		 
		 function searchFocus(q)
		 {
		   if (q.value == "Enter Full Name")
		   {
			q.value = "";
		   }
		 }
		
		 
		 function searchClear(q)
		 {
		  if (q.value == "")
		   {
			q.value = "Enter Full Name";
		   }
		 }
		 
		  function searchFocus1(r)
		 {
		   if (r.value == "Enter Email Address")
		   {
			r.value = "";
		   }
		 }
		
		 
		 function searchClear1(r)
		 {
		  if (r.value == "")
		   {
			r.value = "Enter Email Address";
		   }
		 }
		 
	 function over(num){
		 	menuname = 'menu'+num;
			menuchris = document.getElementById(menuname);
			
			if(num == 1){
				menuchris.style.background = "url(/images/menuleft.png)";
				animatedcollapse.show(['menudiv']);
			}
			else if(num == 9){
				menuchris.style.background = "url(/images/menuright.png)";
				animatedcollapse.hide(['menudiv']);
			}
			else{
				menuchris.style.background = "url(/images/menuover.png)";
				animatedcollapse.hide(['menudiv']);
			}
				
		 }
		 
		 function out(num){
		 	menuname = 'menu' + num;
			menuchris1 = document.getElementById(menuname);
			menuchris1.style.background = "none";
			
			
		 }