// Put all your lovely jQuery / Javascript goodies right down here.

// initialize tooltip
$("#content img[title]").tooltip({

   // tweak the position
   position: "bottom center",

   // use the "slide" effect
   effect: 'slide'

// add dynamic plugin with optional configuration for bottom edge
}).dynamic({ top: { direction: 'down', bounce: true } });

$(".items img[title]").tooltip({ position: "bottom center", effect: 'slide'});



$(function() {
	
	// initialize details tabs
		// :first selector is optional if you have only one tabs on the page
	$(".css-tabs:first").tabs(".css-panes:first > div", {effect: 'fade'});
	
	// initialize scrollable
	$(".scrollable").scrollable();
	
});



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

