(function($){
	$(document).ready(function(){
		$('div.header div.top-icons li img')
			.hover( function() { $(this).next().css('textDecoration', 'none'); },
					function() { $(this).next().css('textDecoration', 'underline'); })
			.click( function() { document.location = $(this).next().attr("href"); });
		$('div.header div.top-icons li a').hover(
			function() { $(this).css('textDecoration', 'none'); },
			function() { $(this).css('textDecoration', 'underline'); }
		);
		$('div.sidebar div.banners div.banner:last-child').css('marginBottom', '0');


		/*  market.htm  */
		$('table.catalog-list tr:even').css('background', '#eff0f2');
		$('div.buy-sale-block div.buy-sale-line-block:last-child').css('borderBottom', '0');
		/*  rubric.htm  */
		$('div.search-result-table tr:even td').css('background-color', '#eff0f2');		
	});
})(jQuery);

