$(document).ready( function(){
	$('#topmenu a[href=#]').removeAttr('href').css('cursor','pointer');
	$('#topmenu').children('tbody').children('tr').children('td').each( function(){
		$(this).hover( function(){
			$('table',this).stop(true,true).fadeIn();
		}, function(){
			$('table',this).fadeOut();
		} );
	} );
	$('#topmenu table a').prepend( '<img class="pmtb" src="ramka/menu/060420icon2.gif" width="18" height="16" border="0" /> ' );
	$('#topmenu table a').hover( function(){
		$(this).addClass('hover');
		$('img.pmtb',this).css('visibility','visible');
	}, function(){
		$(this).removeClass('hover');
		$('img.pmtb',this).css('visibility','hidden');
	} );
	$('#topmenu td').hover( function(){
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	} );
} );
