/* Settings for jQuery tools */

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

	$(".slidetabs ul").tabs("#portfolio ol > li", {

		effect: 'fade',
		fadeInSpeed: '300', 
		fadeOutSpeed: '300', 
		rotate: true, 
		autopause: false, 

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({clickable:false});
});
