
	if ($("#client_list").length > 0) {
		$("#client_list").tabs();
	}
	
	$("#about_us .box_mid a").hover(function(){
		$(this).find('h4').css({'text-decoration':'underline'});
	},
	function(){
		$(this).find('h4').css({'text-decoration':'none'});
	});
	
	$("#about_us .longthin a.table-link").hover(function(){
		$(this).find('span').css({'text-decoration':'underline'});
	},
	function(){
		$(this).find('span').css({'text-decoration':'none'});
	});
	
	$("#about_us .arrows td a").hover(function(){
		$(this).find('h4').css({'text-decoration':'underline'});
	},
	function(){
		$(this).find('h4').css({'text-decoration':'none'});
	});

