$(document).ready(function() {
	$('a.blank').attr('target', '_blank');
	
	$('a[rel="gallery"]').facebox();
	
	Cufon.replace('#navigation a');
	Cufon.replace('.titolo');
	
	$('#gallery-carousel').jcarousel();
	
	$('div#hide_scroll').attr('id', 'scroll');
	$('div#hide_scroll-buttons').attr('id', 'scroll-buttons');
	
	var ele		= $('div#scroll');
	var speed	= 40;
	var scroll	= 5;
	var scrolling;;
	
	$('a#scroll-up').mouseenter(function() {
		scrolling = window.setInterval(function() { ele.scrollTop( ele.scrollTop() - scroll ); }, speed);
	});
	
	$('a#scroll-down').mouseenter(function() {
		scrolling = window.setInterval(function() { ele.scrollTop( ele.scrollTop() + scroll ); }, speed);
	});
	
	$('a#scroll-up, a#scroll-down').bind({
		click: function(e) { e.preventDefault(); },
		mouseleave: function() { if (scrolling) { window.clearInterval(scrolling); scrolling = false; }; }
	});
});
