$(window).load(function(){
	$('.slider')._TMS({
		playBu:'.play',
		preset:'diagonalFade',
		easing:'easeOutQuad',
		duration:1200,
		pagination:true,
		slideshow:6000})
	$('ul.menu').superfish({
      delay:       600,
      animation:   {height:'show'},
      speed:       600,
      autoArrows:  false,
      dropShadows: false
    });
})
/************************************* ENVIAR CONTACTO********************************************/
function limpia() {
	document.getElementById('empresa').value = '';
	document.getElementById('giro').value = '';
	document.getElementById('direccion').value = '';
	document.getElementById('ciudad').value = '';
	document.getElementById('estado').value = '';
	document.getElementById('pais').value = '';
	document.getElementById('nombre').value = '';
	document.getElementById('apellidos').value = '';
	document.getElementById('cargo').value = '';
	document.getElementById('email').value = '';
	document.getElementById('telefono').value = '';
	document.getElementById('movil').value = '';
	document.getElementById('especificaciones').value = '';
}
function enviarContacto() {
	empresa = document.getElementById('empresa');
	giro = document.getElementById('giro');
	direccion = document.getElementById('direccion');
	ciudad = document.getElementById('ciudad');
	estado = document.getElementById('estado');
	pais = document.getElementById('pais');
	nombre = document.getElementById('nombre');
	apellidos = document.getElementById('apellidos');
	cargo = document.getElementById('cargo');
	email = document.getElementById('email');
	telefono = document.getElementById('telefono');
	movil = document.getElementById('movil');
	especificaciones = document.getElementById('especificaciones');
	
	email = email.replace(/@/gi, ' ');
	especificaciones = mensaje.replace( /\W/g, '_' );
	$.post('redisoft/enviarContacto/', {
		empresa: empresa, giro: giro, direccion: direccion, ciudad: ciudad, estado: estado, pais: pais, nombre: nombre, 
		apellidos: apellidos, cargo: cargo, email: email, telefono: telefono, movil: movil, especificaciones: especificaciones
	},
		function(data){
			$('#porsi').html(data);
			document.getElementById('nombre_contacto').value = '';
			document.getElementById('email_contacto').value = '';
			document.getElementById('mensaje_contacto').value = '';
	});
}	
