$(document).ready(function(){
	//$('body').pngFix( );
	
	$('.thumbs td a').click(function()
	{
		num = $(this).attr('show');
		$('.l_article').hide();
		$('#'+num).show();
		$(this).blur();

		$('.thumbs td').removeClass("act");
		/*$('.thumbs td a').parent().next().children().css({"background" : "url(img/thumb_slash.gif) no-repeat 0px 50%"});
		$(this).parent().next().children().css({"background" : "url(img/emp.gif) no-repeat 0px 50%"});
		$(this).css({"background" : "url(img/emp.gif) no-repeat 0px 50%"});*/
		$(this).parent().addClass("act");
		return false;
	});

});

