	var quotes = new Array();
	quotes[0] = "<strong>Antiguamente las granjeras elaboraban el queso en la granja; a partir del siglo XIX se elaboraba cada vez más en fábricas de queso</strong>";
	quotes[1] = "<strong>Los holandeses siguen prefiriendo tomar una tostada de pan con queso como desayuno.</strong>";
	quotes[2] = "<strong>Con diez litros de leche se elabora 1 kilo de queso.</strong>";
	quotes[3] = "<strong>Los holandeses siguen prefiriendo tomar una tostada de pan con queso como desayuno.</strong>";
	

	function doCheckContactform() {
		var strErrorDefault = "Rellene por favor su ";
		var strError = strErrorDefault;
		
		if ($('#input-firstname').val() == "") {
			strError += "nombre";
		}
	
		if ($('#input-lastname').val() == "") {
			if (strError == strErrorDefault) {
				strError += "apellidos";
			}
			else {
				strError += ", apellidos";
			}
		}
	
		if ($('#input-email').val() == "") {
			if (strError == strErrorDefault) {
				strError += "dirección de e-mail";
			}
			else {
				strError += ", dirección de e-mail";
			}
		}
		
		if ($('#input-question').val() == "") {
			if (strError == strErrorDefault) {
				strError += "pregunta";
			}
			else {
				strError += ", pregunta";
			}
		}
		
		if (strError != strErrorDefault) {
			//strError += " vergessen zu f&uuml;llen.";
			$('#form-error').html('<br />' + strError);
			$('#form-error').fadeIn(1000);
		}
		else {
			$('#contact-form').submit();
		}	
	}

$(document).ready(function(){
	doQuote();
});

function doQuote() {
	el = "" + $("#quote-box").attr('id');
	if(el == "quote-box"){
	$("#quote-box").hide();
	
	setTimeout("$('#quote-box').html(quotes[parseInt(Math.random() * quotes.length)])", 300);
	
	setTimeout("$('#quote-box').show()", 400);
	
	setTimeout("doQuote()", 5000);
	}
}
