$("#content a:not(:has(img))").each(function() {
	var t=$(this).attr("href").substr(-3);
	if(t=="xls") {
		$(this).append(" <img src='/icons/page_white_excel.png' >");	
	} else if(t=="doc") {
		$(this).append(" <img src='/icons/page_white_word.png' >");	
	} else if(t=="pdf") {
		$(this).append(" <img src='/icons/page_white_acrobat.png' >");	
	}
});
