function initFicha() {

	vCarousel = new UI.Carousel("thumbnails");

}

function submitContactForm() {
	var error = false;
	['nombre', 'email', 'telefono', 'msg'].each(function(e) {
		if ($F(e) == '') {
			error = true;
			alert('Debe completar todos los campos.');
			$(e).focus();
			throw $break;
		}
	})

	if (error) return false;


	var params = $('contactForm').serialize();
	$('contactForm').disable();


	new Ajax.Request('/php/contactFicha.php', {
		parameters: params,
		onCreate: function() {
			//onCreate Event
		},
		onComplete: function(transp) {
			$('dataHolderContact').update(transp.responseText);
		}
	});

}
