$(document).ready(function() {

	$("#calendario").draggable();
	
	$('img#botao_calendar').click(function() {
		$('div#calendario').fadeToggle();
		$('#container_datas').jScrollPane({wheelSpeed:60 });
	});	
	
	$('img#calendario_close').click(function() {
		$('div#calendario').fadeToggle();
	});	
	
	$("#calendario").hide();
		

});		
 
jQuery.fn.fadeToggle = function(speed, easing, callback) { 
   return this.animate({opacity: 'toggle'}, speed, easing, callback); 
}; 

//##########################################################################################

function adicionaFavoritos(title, url){
    if (document.all)
        window.external.AddFavorite(url, title);
    else if (window.sidebar)
        alert("Pressione Ctrl + D para adicionar este site aos favoritos.");  
}

function valida(){

	var erro = 0;
	var msg_erro = "Please, fill in all mandatory fields.";
	
	if (document.getElementById('nome').value == "") {
		//msg_erro = msg_erro +  "- Nome \n\n";
		erro = 1;
	}
	
	if (document.getElementById('email').value == "") {
		//msg_erro = msg_erro +  "- Email \n";
		erro = 1;
	}
	
	if (document.getElementById('mensagem').value == "") {
		//msg_erro = msg_erro +  "- Email \n";
		erro = 1;
	}
	
	if (erro == 0) {
		return true;
	}
	if (erro == 1) {
		alert(msg_erro);
		return false;
	}

}

