$(document).ready( function(){
	
	
	$('#tabs').tabs({ fx: { opacity: 'toggle', duration: 500 } });
	
	$("#mypalazzo").accordion({ autoHeight: false }); 	
	
	$("a[rel=galleria_1]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	
	
	
	
	
	$('.slideshow').cycle({
			fx: 'fade',
			timeout:         10000
		});
		
		
		
	
	$('#cerca').focus(function() {
	  //alert('Handler for .focus() called.');
	  if($('#cerca').val()=='')
	  {
	    $('#cerca').val('');
	  }
	});
	
	
	$('#cerca').blur(function() {
	  //alert('Handler for .focus() called.');
	  if($('#cerca').val()=='')
	  {
	    $('#cerca').val('Cerca');
	  }
	});
	
	
	$('#searchloading').click(function() {
		$("#attendere").slideDown();
		$("form.cercaavanzata").slideUp();
		$("body:not(:animated), html:not(:animated)").animate(
			{scrollTop:0},	// parametri dell'animazione
			1000,					// durata animazione (in millisecondi)
			'easeInOutQuad');
		$("#risultati").hide();
		$(".count").hide();
		$("#paginazione").hide();
		
	});	
	
	
	
	
	
	
	
	
	/*
	$('#ancora').ready(function(){
			var new_position = $('#ancora').offset();
			var position = new_position.top;
			var positionmeno20 = position - "30";
			$("body:not(:animated), html:not(:animated)").animate(
				{scrollTop:positionmeno20},	// parametri dell'animazione
				1000,					// durata animazione (in millisecondi)
				'easeInOutQuad');		// animazione (del plugin "jquery.easing")
			return false;
		});
	*/
	
						
});



