$(document).ready(function(){

	$("#news a").mouseover(function(){
		var id = $(this).attr("id").split("link_");		
		$("#img_"+id[1]).css('background','url('+$("#img_"+id[1]).attr('alt')+') no-repeat -4px 4px');
	});
	$("#news a").mouseout(function(){
		var id = $(this).attr("id").split("link_");
		$("#img_"+id[1]).css('background','none');
	});
		
	if($('.logos_main').size() > 0){
		$('.logos_main tbody tr td').mouseenter(function(){$(this).children('img').attr('src', $(this).children('img').attr('src').replace('.jpg', '_o.jpg'));})
									.mouseleave(function(){$(this).children('img').attr('src', $(this).children('img').attr('src').replace('_o.jpg', '.jpg'));})
									.click(function(){location.href='/about/clients/';});
	}
});
