$(function(){	
	//foto
	
	
	$('div#thumb img').click(function(){
		var foto = $(this).attr('src').split('_'); 
		var src = foto[0] + '_' + 'big' + '_' + foto[2] ;
		
		$('div#esempio table').hide();							 
		$('div#esempio').animate({height:'20px'/*, 'margin-top': '24px'*/}, 450);
		$('div#esempio h3').css({ 'cursor': 'pointer'});	
		$('div#gallery').slideDown(450);
		$('div#gallery img').fadeOut('fast', function(){
			$(this).attr('src', src);
			$(this).fadeIn('fast');
		});
		//$('div#gallery').html('<img alt="" src="'+src+'" />');
		//$('div#gallery img').attr('src', src);
		//$('div#gallery img').fadeIn('slow');
		//$('div#esempio h3').css({'cursor':'pointer',  'line-height': '26px', 'text-align':'center'});	
		
	})	
	var tableheight = $('div#esempio').innerHeight();
	$('div#esempio h3').click(function(){
		$('div#esempio table').fadeIn('normal');							  
		$('div#esempio').animate({ height: 246  /*, 'margin-top': '10px'*/}, 450 );
		$('div#esempio h3').css({ 'cursor': 'auto'});	
		$('div#gallery').slideUp('normal');
	})	
						   
						   
})
