// JavaScript Document
function Interface(){
	this.showPage=function(id,url){
	$("#" + id).slideUp('slow', function() {
	$("#" + id).html('<div style="width:100%;padding-top:50px" align="center"><img src="images/carregando.gif" /></div>').show();
			$("#"+id).load(url,function(){
			    $("#"+id).slideDown(700);
			});							  
		});
		
	}
	this.showImg=function(id,url){
		$("#"+id).html("<img src="+url+">");
		$("#"+id).show();
	}
	this.hidenImg=function(id){
		$("#"+id).hide();
	}
}

//// JavaScript Document
//function Interface() {
//    this.showPage = function(id, url) {
//        $("#" + id).fadeOut('slow', function() {
//            $("#" + id).html('<div style="width:100%;padding-top:50px" align="center"><img src="images/carregando.gif" /></div>').show();
//            $("#" + id).load(url, function() {
//                $("#" + id).hide();
//                $("#" + id).fadeIn(600);

//            });
//            return false;
//        });

//    }
//    this.showImg = function(id, url) {
//        $("#" + id).html("<img src=" + url + ">");
//        $("#" + id).show();
//    }
//    this.hidenImg = function(id) {
//        $("#" + id).hide();
//    }
//}

