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

$(function() {
	$("#accordionHoriz").tabs("#accordionHoriz div", {
		tabs: 'img', 
		effect: 'horizontal'
	});
});

$(document).ready(function() {
	// enable tooltip for "showArtwork" element. use the "slide" effect
	$("#showArtwork").tooltip({ effect: 'fade'});  
});
