$("body").ready(
	function (){
		$(".j_portf_logos").mouseover(function(){
		      $("img:first",this).hide();
		      $("img:last",this).show();
		    }).mouseout(function(){
		      $("img:first",this).show();
		      $("img:last",this).hide();
		    });

	}	
);
function colorizeTables(){
	$(".client_ranks_table tr:nth-child(2n+1)").addClass("dark_row");
	$(".client_ranks_table tr:nth-child(1)").addClass("first_table_row");
}

