
function myInit(){
	$jq('#header .sc').each(function(){
		$jq(this)
			.unbind('click')
			.hover( msg, msg )
			.removeClass('hp')
			.removeClass('goto')
			;
	});
	$jq('#menu td.off').css('opacity', 0.4);
	$jq('#menu td.ok')
		.click(function() {
			$this = $jq(this);
			document.location = 'go.php?sc=' + GLOB_qs_sc + '&sz=' + $this.attr('sz');
		})
		.each(function() {
			$jq(this)
				.filter(':first')
				.hover(function() {
						$jq(this).addClass('hover');
					}, function() {
						$jq(this).removeClass('hover');
					})
				.filter('[sz=ma]').click(componi_lettera)
			;
		})
	;
}
