$(document).ready(function() {
	if ( $.browser.opera ) {
		$('img.top_bug').css('margin','-10px 0pt 0pt 170px');
		$('img.today_bug').css('margin','70px 0pt 0pt -45px');
	}
	$('img.top_bug').show();
	$('img.today_bug').show();
	
	$('#submit').val('');
	
	
	 // link with games
	$(".top10 a").mouseover( function() {
		$(this).parent().parent().next().fadeIn("fast");
	} ).mouseout( function() {
		$(this).parent().parent().next().fadeOut("fast");
	} );
	
});