//	inizio funzioni di debug
debug_msg = false;
function toDebug(string)
{
	if (debug_msg)
	{
		if((typeof window.console=="undefined")) {
		//	alert(string);
		}else {
			console.error();
			console.group(string);
			console.trace();
			console.groupEnd();
		}
	}
}
function toConsole(string)
{
	if((typeof window.console=="undefined")) {
	//alert(string);
	}else {
	console.log(string);
	}
}


jQuery(document).ready(function()
{
	jQuery('.thumbnail a').lightBox();

	// FORMATTAZIONE TABELLA

   	jQuery(".mceContentBody table.tipo1 tbody tr:even").addClass("even");
	jQuery(".mceContentBody table.tipo1 tbody tr:odd").addClass("odd");

	var lang = jQuery('body').attr('class');	
	
	var ID_contatti = 217;

	var WForm = 860;		
	var HForm = 510;		
			
	jQuery('.contatti-ui').click(function() {
	
		jQuery("#contattiUi").dialog({

			resizable: false,
			height: 510,
			width: 860,
			bgiframe: true, 
			overlay: {opacity: 0.8, background: "black"},
			modal: true,
			open: function() {
				jQuery("#contattiUi").html('<div class="Generaloading"></div>'); // attacco loading
				jQuery('.Generaloading').css('display', 'block');	
				jQuery("#contattiUi").load("index.php?l="+lang+"&option=content&id="+ID_contatti+"&noheader=1&nofooter=1"); // carico contenuto
			}
				
		});
	});	
	
	
});

jQuery(window).load(function()
{

});





