jQuery(document).ready(function(){
		
	jQuery("#scroll").scrollable({size: 3,items: 'div.itemsScroll', vertical:true,clickable:false});	
	jQuery("#news").innerfade({speed: 2500,timeout: 4000,type: 'random'});
	jQuery("#newstalenti").innerfade({speed: 2500,timeout: 3500,type: 'random'});
	jQuery("#news2").innerfade({speed: 2500,timeout: 3700,type: 'random'});
	
	$.tools.addTipEffect("slidedown",  
		// opening animation
		function() { 
			var opacity = this.getConf().opacity;
			this.getTip().css({opacity:0}).animate({top: '+=17', opacity:opacity}, 300).show();
		}, 
		// closing animation
		function() {
			this.getTip().animate({top: '+=17', opacity:0}, 300, function() { 
					$(this).hide().animate({top: '+=12'}, 0);
			});
		}
	);
	jQuery("a.obreTool").tooltip({effect: 'slidedown'});
})
