//	inizio funzioni di debug
debug_msg = true;
function toDebug(string)
{
	if (debug_msg)
	{
		if((typeof window.console=="undefined")) {alert(string);}
		else {}
	}
}
function toConsole(string)
{
	if((typeof window.console=="undefined")) {/* alert(string); */}
	else console.log(string);
}


jQuery(document).ready(function()
{
	jQuery('table.listino-prezzi tr:even').addClass('bhu90');
	jQuery("table a").colorbox();
});