$(function() {

	// $("#sidebar").tabs("#sidebar div.pane", {tabs: 'h2', effect: 'slide',
	// initialIndex: null});

	$("a[title]").tooltip( {

		effect : "slide",

		// custom opacity setting
		opacity : 0.8,
		offset : [ 20, 70 ],
		// use this single tooltip element
		tip : '#tooltip'

	});

	$("a[rel]").overlay( {

		expose : 'darkred',
		effect : 'apple',

		onBeforeLoad : function() {

			// grab wrapper element inside content
		var wrap = this.getContent().find(".overlay_content");

		// load the page specified in the trigger
		wrap.load(this.getTrigger().attr("href"));
	}

	});
});

