/*Ajax - Slide*/
jQuery.noConflict();
(function($) {
		  $(function() {
					 $(document).ready(function(){
												$("#slider").easySlider({
																		auto: true, 
																		continuous: true,
																		numeric: false,
																		controlsShow: false,
																		speed: 1000
																		});
												$("#slider2").easySlider({
																		auto: false, 
																		continuous: true,
																		speed: 1200,
																		numeric: true,
																		controlsShow: true
																		});
												});
					 });
})(jQuery);


//MÁSCARA PARA CAMPOS
jQuery.noConflict();
(function($) {
$(function() {
$('#data').mask('99/99/9999'); //data
$('#hora').mask('99:99'); //hora
$('#fone').mask('(99) 9999-9999'); //telefone
$('#rg').mask('99.999.999-9'); //RG
//$('#email').mask('*@'); //E-mail
});
})(jQuery);


//Confirmação de exclusao
function confirmaExclusao(aURL) {
	if(confirm('Você tem certeza que deseja excluir?')) {
		location.href = aURL;
	}
}