// FUNCIONES

$(function() {

// OVERLAY
	$("a[rel]").overlay({mask: '#111', effect: 'apple'});

// SLIDE MENU	
	$("#accordion").tabs("#accordion .pane", {tabs: 'h5', effect: 'slide', initialIndex: null});

// SCROLLABLE
	$(".scrollable").scrollable();

// TABS
$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs(".innertabinfo > div", {effect: 'fade', history: true});
});

});

