jQuery(function() {
         jQuery("#toTop").scrollToTop({speed:1000,ease:"easeOutExpo",start:100});
});

jQuery(function() {

jQuery("ul#menu").lavaLamp({
	fx: "easeOutExpo",
	speed: 1200,
	startItem: 0
});

jQuery(document).ready(function () {
if (jQuery(".scrollbox").length > 0) {
		var g = jQuery('.scrollbox').offset().top - parseFloat(jQuery('.scrollbox').css('marginTop').replace(/auto/, 0));
		jQuery(window).scroll(function () {
			var y = jQuery(this).scrollTop();
			if (y >= g) {
				jQuery('.scrollbox').addClass('fixed')
			} else {
				jQuery('.scrollbox').removeClass('fixed')
			}
            })
	}
});

});

		
jQuery(function() {
	jQuery("#pl").scrollable({ circular: true });
});

jQuery(function() {
	jQuery(".scrollable").scrollable();
});

			


