// Testimonials switcher

$('#testimonials .control').click(function(){
    var testimonialNumber = $('#testimonials p').length;
    var currentSlideIndex = $('#testimonials .current').index() + 1;
    var currentSlide = $('#testimonials .current');    
    
    if(currentSlideIndex < testimonialNumber) {
        $(currentSlide).fadeOut().removeClass('current').next('p').fadeIn().addClass('current');   
    }
    else {
        $('#testimonials p').fadeOut().removeClass('current')
        $('#testimonials p:first').fadeIn().addClass('current');
    }
});

// -------------- VALIDATION (general) ------------------ //

$('#flickr-feed').jflickrfeed({
		limit: 3,
		qstrings: {
			id: '70382241@N07'
		},
/* 		itemTemplate: '<li><a href="http://www.flickr.com/photos/produitszanimo/"><img src="{{image_s}}" alt="{{title}}" /></a></li>' */
		useTemplate: false,
		itemCallback: function(item){
			$(this).append("<li><a href=\"http://www.flickr.com/photos/produitszanimo/\"><img src='" + item.image_t + "' alt=''/></a></li>");
		}
	});

// -------------- VALIDATION (general) ------------------ //

// newsletter rules
$("#newsletter-form").validate({ 
  rules: {
		newsletter: {
			required:true,
			email: true
			}
  	},
  submitHandler: function(form) {
		  $.ajax({
              type: "POST",
              url: 'http://www.zanimo.com/send_newsletter.php',
              data: $(form).serialize(),
              timeout: 3000
            });
          $('#newsletter form').fadeOut(700).remove();
          if($('body').hasClass('fr')){
            $('<div class="thank-you fr ir">Merci! Vous êtes maintenant inscrit à l\'infolettre.</div>').fadeIn(700).appendTo('#newsletter');
          } else {
		  	$('<div class="thank-you en ir">You have successfully subscribed!</div>').fadeIn(700).appendTo('#newsletter');
		  }
     }
});

// contact form rules
$("#contact-form").validate({ 
  rules: {
		email: {
			required:true,
			email: true
			},
		phone: {
			number: true,
			minlength: 10,
			maxlength: 10
			}
  	},
  submitHandler: function(form) {
          $.ajax({
              type: "POST",
              url: 'http://www.zanimo.com/send_email.php',
              data: $(form).serialize(),
              timeout: 3000
            });
		  $('#contact-form').fadeOut(700).remove();
		  if($('body').hasClass('fr')){
            $('<div class="thank-you fr ir"><h1>Merci</h1><p>Nous r&eacute;pondrons &aacute; votre message dans les plus brefs délais.</p></div>').fadeIn(700).appendTo('.content');
          } else {
		  	$('<h1>Thank you!</h1><p>Your inquiry has been received. We will respond as soon as we are able.</p><p style="padding-bottom: 244px;"><a href="http://www.zanimo.com/" class="btn-return-home">return to home</a></p>').fadeIn(700).appendTo('.content');
		  }
     }
		
});

