jQuery(function() {
         jQuery("#toTop").scrollToTop({speed:1000,ease:"easeOutExpo",start:100});
		 jQuery("#demo img[title]").tooltip({offset: [30]});
});



jQuery(document).ready(function(){
//Set default open/close settings
jQuery('.acc_container').hide(); //Hide/close all containers
jQuery('.acc_trigger:first').addClass('active').next().show(); //Add "active" class to first trigger, then show/open the immediate next container

//On Click
jQuery('.acc_trigger').click(function(){
	if( jQuery(this).next().is(':hidden') ) { //If immediate next container is closed...
		jQuery('.acc_trigger').removeClass('active').next().slideUp(); //Remove all "active" state and slide up the immediate next container
		jQuery(this).toggleClass('active').next().slideDown(); //Add "active" state to clicked trigger and slide down the immediate next container
	}
	return false; //Prevent the browser jump to the link anchor
});
});
















jQuery(document).ready(function() {
		jQuery('#foo').dropmenu(
			jQuery.fn.dropmenu.defaults = {
	effect			: "slide",
	speed			: "normal",
	timeout			: 250,
	nbsp			: false,
	maxWidth		: 50
}

		);
	});

		
jQuery(function() {
	jQuery("#pl").scrollable({ circular: true });
});







