$(document).ready(function() {
	var count = 0;
	$('div.showPrint').click(function(){
		if(count == 0) {
			$('#_testa').animate({height: 'hide', opacity: 'hide'}, '1000');
			$('#_footer').animate({height: 'hide', opacity: 'hide'}, '1000');
			$('#_menu').hide();
			$('body').css({'background' : 'none'});
			count = 1;
			$('span.textPrint').empty().html('Torna');
		}else{
			$('#_testa').animate({height: 'show', opacity: 'show'}, '1000');
			$('#_footer').animate({height: 'show', opacity: 'show'}, '1000');
			$('#_menu').show();
			$('body').css({'background-image' : 'url(imma/background.gif)', 'background-repeat' : 'repeat'});
			count = 0;
			$('span.textPrint').empty().html('Stampa');
		}
	});
});
