﻿$(document).ready(function(){

	$("#formCadastro").submit(function() {
		$("#divMsg").html("Aguarde...").fadeIn();
		//var $nome = $("#txNomeCad").attr("value"); ;
		var $email = $("#email").attr("value");
		$("#divMsg").load(
			"enviaCadastro.php",
			//{nome: $nome, email: $email},
			{email: $email},
			function (response, status, xhr) {
				window.setTimeout(function() {
					$("#divMsg").fadeOut();
					if(response.search(/erro/i)<0){
						$("#email").attr("value", "");
					}
				},3000);
			});
		return false;
	});

	if($('#tela-cursos').length){
		var scrollPane = $('#scroll-pane');
		var scrollableHeight = parseInt(scrollPane.height()) - parseInt(scrollPane.parent().height()) || 0;
		
		$("#slider-vertical").slider({
		  orientation: "vertical",
		  range: "max",
		  min: 0,
		  max: scrollableHeight,
		  value: scrollableHeight,
		  slide: function(event, ui) {
			scrollPane.css({top: ui.value - scrollableHeight});
		  }
		});
	}
});
