// JavaScript Document
$(document).ready(function() {
	// funzione testo
	$('#container_aaa').children('a').click(function () { 
		$dimensione = $(this).attr('title');
    	$('#container_info_sx p').css('font-size',$dimensione) ;
		$('#offerte p').css('font-size',$dimensione) ;
		$('.trattamento p').css('font-size',$dimensione) ;
    });
	// inizio gallery
	$('.scrollable').scrollable({vertical:true, size: 3});
	
	$('#imghome').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 5000 
	});
	
	$('#bigimg').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 5000 
	});
	$('.items img').click(function() {
		newImg = $(this).attr('src');
		$('#bigimg img').fadeOut('slow', function() {
		$('#bigimg img').attr({ src: newImg }).fadeIn('slow');
		 $('#bigimg').cycle('pause');
		});
	});	
			
	// inizio accordion
	//$('div#offerte > div.descrizione').hide();
		$('div#offerte > div.titolo').click(function() {
			$(this).next('div.descrizione').slideToggle('fast').siblings('div.descrizione:visible').slideUp('fast');
			$('div.titolo a').removeClass('selected');
			$(this).children('a').addClass('selected')
		});
	// offerte new
	$('div.dettaglio_offerta').hide();
	$('div.riga_offerta_sl > a').click(function() {
			$(this).next('div.dettaglio_offerta').slideToggle('fast').siblings('div.dettaglio_offerta:visible').slideUp('fast');
		});
	// testo
	$('div.expander').expander({
    slicePoint:       850,  // default is 100
    expandText:         'Leggi tutto', // default is 'read more...'
    userCollapseText: 'Comprimi il testo'  // default is '[collapse expanded text]'
  	});

});