//Libreria delle funzioni Javascript
$(document).ready(function() {
	$('img.animebox').qtip({
  			content: '<p class="texttips">Hai un\'età compresa <b>tra i 6 ed i 13 anni</b> e ti piace <b>cantare</b>? Da <b>solo</b>, in <b>gruppo</b> o con un <b>coro</b>, iscriviti al <b>CantaInsieme ANSPI 2010</b>! Per informazioni ed iscrizioni segui <a href="main.php?page=a_cantainsieme2010">questo</a> link.</p>',
  			container: $('img.animebox'),
  			position: {
			      corner: {
			         target: 'topMiddle',
			         tooltip: 'bottomMiddle'
			      },
			      adjust: { x: 20 }
			  },
			style: {
				width: { max: 150 },
	 			border: {
					width: 1,
					color: '#FC7A56'
				},
		 		background: '#FFFFFF',
		 		tip: {
	 			corner: 'bottomMiddle'
			 	}
			 },
		    	show: { ready: true },
		    	hide: { when: 'mouseout', fixed: true }
	});
});


function toggle_visibility(id) {
   var e = document.getElementById(id);
   if(e.style.display == 'block')
	  e.style.display = 'none';
   else
	  e.style.display = 'block';
}