function collane() {
	$('#pagina_collane .tab_handle').click(function() {
		$(this).addClass('active_handle');
	
		var this_pane = $(this).next();
		this_pane.addClass('active_pane');
		
		var other_panes = $(this).siblings('.tab_pane').not(this_pane);
		other_panes.removeClass('active_pane');
		
		var other_handles = $(this).siblings('.tab_handle');
		
		other_handles.animate({width:'110px'},'fast');
		other_handles.removeClass('active_handle');
		$(this).animate({width:'110px'},'fast');
		
		other_panes.animate({width:'0px'}, 'fast', function() {
			$(this).siblings('.active_pane').animate({width:'459px'}, 'fast');
		});		
	});
	
	$('#pagina_collane .tab_handle').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	
	
	$('#email_ufficioproposte').click(function() {
		window.location.href = 'http://www.altromondoeditore.com/home/page/pagina_contatto';
	});
}