// JavaScript Document

head.ready(function() {
	$(document).ready(function(){
		//alert('Ready!');
		
		//INIZIALIZZA LA GESTIONE DEL PANNELLO DI DEBUG
		$("#debug_open").click(function(){
			$("#inner_debug").slideDown("fast");	
		});	
	 
		$("#debug_close").click(function(){
			$("#inner_debug").slideUp("fast");	
		});		
	 
		$("#debug_pill div").click(function (event) {
			event.preventDefault();
			$("#debug_pill div").toggle();
		});
	});
});

