$(document).ready(
   function(){	
     $('#promo').innerfade({
     speed: 'slow',
     timeout: 8000,
     type: 'sequence',
     containerheight: '240px'
    });
  });

var pausecontent=new Array()
pausecontent[0]="Exceptional service; a great relationship. I have no hesitation in recommending Eden Springs. <p align='right'><img src='water/uk/dwp.gif' alt='DWP' border='0'></p>"
pausecontent[1]="Eden Springs have served us well – the staff are well trained, well turned out, friendly and helpful. <p align='right'><img src='water/uk/bostik.gif' alt='Bostik' border='0' width='50' height='28'></p>"
pausecontent[2]="Bend over backwards service and the only supplier we would consider using. <p align='right'><img src='water/uk/nhs.gif' alt='NHS Trust' border='0' width='51' height='24'></p>"
pausecontent[3]="Staff and service are flexible, very professional and proactive. <p align='right'><img src='water/uk/nhs-glasgow.gif' alt='NHS Creater Glasgow' border='0' width='51' height='24'></p>"
pausecontent[4]="Very impressed; install quickly and efficiently at short notice. A very good working relationship. <p align='right'><img src='water/uk/devere.gif' alt='Devere' border='0' width='50' height='28'></p>"

function sprawdz_contact(theForm)
{

  if (theForm.name.value == "" || theForm.name.value == "Your name...")
  {
    alert("Attention! Fill in fields marked in red!");
    theForm.name.style.backgroundColor= '#F20404';
    theForm.name.focus();
    return (false);
  }
  else{
    theForm.name.style.backgroundColor= '';
  }


  if (isNaN(theForm.telephone.value)==true /*|| theForm.telephone.value.length!=10*/)
  {
    alert("Attention! Fill in fields marked in red!");
    theForm.telephone.style.backgroundColor= '#F20404';
    theForm.telephone.value='';
    theForm.telephone.focus();
    return (false);
  } else{
    theForm.telephone.style.backgroundColor= '';
  }


  if (theForm.coment.value == "" || theForm.coment.value == "Comments...")
  {
    alert("Attention! Fill in fields marked in red!");
    theForm.coment.style.backgroundColor= '#F20404';
    theForm.coment.focus();
    return (false);
  }else{
    theForm.coment.style.backgroundColor= '';
  }

  return (true);
}

