var q2 = new Image();
	  q2.src = 'media/quote2.png';

	  /**
	   *
	   * @access public
	   * @return void
	   **/
	  function getQuote(){
	  //todo add more ridiculous comments
	  	var q = document.getElementById('questionaire');
	  	var message = new String('We would be happy to take your money! Please come back next week when we have added our client portal.');
	  	if(q.qIncome.value =='0') {
		   message = 'Sorry... but you cannot get insurance. Please get a job and then come back. If you do have a job, then change the menu for your annual income.';
		  } else {
		  if(q.qGender.value =='female'){
		  var x = confirm('Please Click OK if you are Hot. If not... please click Cancel and find another insurance company.');
		    if(! x){
			  message = 'Sorry... only hot chicks are allowed to use our service... unless you are old and about to die.';
			}
		  }
		  if(q.qRace.value =='black') {
		    if(q.qIncome.value =='more'){
			  message = 'Sorry... but according to our racist estimating policies, we think that you are probably a drug dealer. Please get a drug test and bring it into our nearest branch office (probably not in your neighborhood).';
			} else {
			message = 'While you are eligible for our insurance, your premiums are going to be a little higher than average. Could you start over and lie about your race, please?';
			}
		  } else if(q.qRace.value =='other') {
		    message = 'Your eligibility is pending an INS investigation. Please contact our "DO NOT DEPORT ME" extortion hotline if you have money but no green card.';
		  } else if(q.qRace.value =='white' && q.qIncome.value =='more' && q.qGender.value =='male'){
		  message = 'Sorry sir... Our executives, board of directors, senior advisors, lawyers and other big whigs are not supposed to sign up for any of this... this form is to get OTHER people to help make YOU richer.';
		  }

		  }
          alert(message);
        return false;
	  }