﻿(function($) {
    $.loadTab = function(idURL) {  
        if (idURL.length > 0) {
            $("#preloader").show();
            $.ajax(
	            {
	                url: idURL,
	                cache: false,
	                success: function(message) {
	                    $("#tabcontent").empty().append(message);
	                    $("#preloader").hide();
	                }
	            }); 
        }
    } //cierre funcion loadTab
})(jQuery);
