$(document).ready(function(){
	  $("table.catalog tr.hrefs td, table.catalogS tr.hrefs td, table.dgCarousel tr.hrefs td").each(function(){
	 	$(this).bind("mouseover", function(){
	 		
	 		$(this).find("span.sepr").hide();
	 		$(this).find("span.other").show();
	 	}).bind("mouseout", function(){
			
	 		$(this).find("span.other").hide();
	 		$(this).find("span.sepr").show();
	 	});
	 });
});
