/* Document Ready */
$(document).ready(function(){
	//Menú
	$('#menu a').blend({
		speed:800
	});
	//Tooltips
	$('area').each(function()
    {
	  $(this).qtip(
	  {
		 content: $(this).attr('alt'),
		 style: {
			name: 'cream',
			border: {
			   width: 0, 
			   radius: 5
			}, 
			tip: true,
			padding: 7, 
			textAlign: 'center'
		 },
		 position: {
			corner: {
			   target: 'bottomRight',
			   tooltip: 'topLeft'
			}
		 }
	  });
   });
	//Noticias fade
	$('#news').innerfade({
		animationtype: 'fade',
		speed: 2000,
		timeout: 8000,
			type: 'sequence'
	});
	// Carrusel de marcas
	$("#pie_marcas").jCarouselLite({
		auto: 2000,
		speed: 3000,
		visible: 6
	});
	$("#axcontact").submit(function(){
		var str = $(this).serialize();
		$.ajax({
		   type: "POST",
		   url: "php/contacto.php",
		   data: str,
		   success: function(msg){
			$("#note").ajaxComplete(function(event, request, settings){
				if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
				{
				  result = '<div class="notif_ok"><i>Gracias por contactarnos,</i><br /> a la brevedad nos comunicaremos con Ud.!</div>';
				  $("#form").hide();
				}
				else
				{
					result = msg;
				}
				$(this).html(result);
			});
		   }
		 });
		return false;
	});
});