$(document).ready(function(){
   // $('#foto_slider').bxSlider({auto: true, pause: 7000});
   // CYCLE
	$('.cycle').cycle({ 
		fx:     'scrollLeft', 
		speed:  1000, 
		timeout: 9000, 
		next:   '#next2', 
		prev:   '#prev2',
		pause:   1 //pausa sull'hover
	});
    $("p.error").each(function (i, e){
        var wrapped=$(e);
        wrapped.prev('label').before(e);
    });
    $('[class^="truncate"]').each(function(i,e){
        var wrapped=$(e);
        var l=wrapped.attr("class").substring(9);
        wrapped.truncate({width: l,addtitle: true});
    });
    $('.tooltip').tooltip();
    $('.tooltip-big').tooltip({tipClass: 'tooltip big'});
});

