
$(document).ready(function(){

	var files = new Array('flv','ai','avi','bmp','cs','dll','doc','exe','fla','gif','jpg','js','mdb','mp3','pdf','ppt','rdp','swf','swt','txt','vsd','xls','xml','zip');

	$(".content a[href]").each(function(){
		if($(this).text()){
			u = $(this).attr("href");
			p = u.split('.');
			e = p[p.length - 1].toLowerCase();
			m = "";
			for(i in files){
				eval("m = u.match(/\\." + files[i] + "\\W/);");
				if(files[i] === e || m){
					//t = $(this).html();
					//$(this).html(t.substring(t.lastIndexOf('/') + 1));
					$(this).addClass('inline_icon icon_' + files[i]);
				}
			}
		}
	});

});