$(document).ready(function () {
	
	//Mensaxe
	$('#mensaxe').hide().slideDown('normal').click(function () {
		$(this).fadeOut('normal');
	});
	
	$('a[rel=modal]').each(function () {
		$(this).fancybox({
			'transitionIn': 'elastic',
			'overlayColor': '#000'
		})
	});
	
	$('#novaideatool *').tooltip();
	
	$('#novaideatool *').tooltip();
	
	$('.requisitos p').tooltip();
	
	$('strong.caracteres').each(function () {
		var input = $(this).siblings('input, textarea').eq(0);
		var max = parseInt($(this).text());
		var label = this;
		
		$(this).html(max - $(input).val().length);

		$(input).keydown(function (e) {
			var length = max - $(input).val().length;
			
			$(label).html(length);

			if (parseInt(length) < 0) {
				$(label).css('color', 'red');
				
				if (e.keyCode > 46) {
					return false;
				}
			} else {
				$(label).css('color', '');
			}
		});
	});
});
