$(function() {
   $('a[rel*=lightbox]').lightBox({
	imageLoading: '../wp-content/themes/taeoui/images/lightbox-ico-loading.gif',
	imageBtnClose: '../wp-content/themes/taeoui/images/lightbox-btn-close.gif',
	imageBtnPrev: '../wp-content/themes/taeoui/images/lightbox-btn-prev.gif',
	imageBtnNext: '../wp-content/themes/taeoui/images/lightbox-btn-next.gif',
	imageBlank: '../wp-content/themes/taeoui/images/lightbox-blank.gif',
   });
   
   	jQuery.validator.messages.required = "";
	jQuery.validator.messages.email = "";
	$(".contactForm").validate({
		invalidHandler: function(e, validator) {
			var errors = validator.numberOfInvalids();
			if (errors) {
				$("li.error span").html('You forgot something!');
				$("li.error").show();
			}
		}
	});
	
	$('#innerfade').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
	});
});
