// perform JavaScript after the document is scriptable. 
$(function() { 
    // setup ul.tabs to work as tabs for each div directly under div.panes 
    $("ul.tabs").tabs("div.panes > div"); 
});

$(function() {
	
	$("#descargar").tooltip({
		tip: '.tooltip',
		position: ['top', 'center'],
		offset: [0, -180],
		effect: 'fade',
		delay: 10
	});

});


$(function() { 
 
    $("ul.css-tabs").tabs("div.css-panes > div", function(i) { 
 
        // get the pane to be opened 
        var pane = this.getPanes().eq(i); 
 
        // if it is empty .. 
        if (pane.is(":empty")) { 
 
            // load it with a page specified in the tab's href attribute 
            pane.load(this.getTabs().eq(i).attr("href")); 
        } 
 
    }); 
 
});

