// THIS FILE CONTAINS ALL THE SETTINGS FOR THE JQUERY PLUGINS USED
jQuery(document).ready(function () {

//JQUERY TOOLS TABS SLIDESHOW
	$("#controllers").tabs("#slides > div", {
/*		effect: 'fade',
        fadeInSpeed: "slow", */
		rotate: true,
		event: 'mouseover'
	}).slideshow({
		autoplay: true,
		clickable: false,
		interval: 7500
	});

	jQuery('#commentList li:nth-last-child(1)').addClass('last');


// CUFON
	Cufon.replace('h1,h2,h3', {
		fontFamily 	: 'Square Serif Medium'
	});
	
});//end document ready

