var quote=new Array();
  quote[0]='Self-knowledge is the most essential aspect of an interview. Close to 70% of an interview will be devoted to you talking about you. Do you really know YOU? ';    /* add as many quotes as you like!*/
  quote[1]='A good CV will maximise your chances of being short-listed for job interviews and could add 10% or more to your next salary. ';
  quote[2]='Employers expect to receive most CVs within 96 hours of publishing the job advert, so get it professionally written NOW.';
  quote[3]='An interviewer may ask about what you did, but what he really wants to know is what you can do now in terms of money earned, money saved and time saved for the Company. What can you do?';
  quote[4]='Less than 10% of interview candidates can clearly express their values, transferable skills, strengths and weaknesses and key personality traits - which are all critical to success in the interview.';


var speed=6000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);


function mailto(domain,user) 
{ 
document.location.href = "mailto:" + user + "@" + domain;
}

	