/// to function must include jquery
$(document).ready(function(){
	return; /// COMMENT OUT THIS LINE
	$('<div id="debugg" style="font-family: Verdana; font-size: 12px; position: absolute; top: 0px; right: 10px; width: 400px; height:200px; overflow:auto; background-color:#FFFFCC; font-size:10px; z-index: 1000; padding: 4px;" />').appendTo( $('body') );
	$('#debugg').css("opacity", "0.8");
});
function debug( msg ){
	return; /// COMMENT OUT THIS LINE
	$('#debugg').append( "[ "+ msg +" ]" );
}
